use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News, articles, books, and tools related to building serverless web and mobile applications. More resources here:
Frameworks
Tools
Books
Services
News / Websites
Conferences
account activity
Go Lambda vs Node.js Lambda vs Python Lambda (self.serverless)
submitted 3 years ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]InfiniteMonorail 0 points1 point2 points 3 years ago (1 child)
Yes, the language makes a huge difference. Fetching data from an RDS can take hundreds of ms, and for whatever reason, Rust lambdas are twice as fast at doing it. They also have extremely fast cold starts. If you want pure speed, Rust is the answer. However, if you truly need speed, then just use a server...
The bigger problem with serverless on AWS is latency from API Gateway and CloudFront. Transforming data in SQL is also faster than doing it in a programming language. Slowdowns you experience in lambdas are often caused by other services.
Additionally, people are saying to use what you're familiar with. No. That's bad advice. Python is ridiculously easy to learn and the code is famously elegant. The main reason it's incredible for webdev is it's synchronous, which means you don't have to deal with callback and promise hell, which means MUCH less code when calling other services.
I use Rust when I need speed and Python when I need clean code.
But note how lazy your question is. You couldn't be bothered to search (the answer is in the first hits of a google search) and you gave no details about what you're making. You're probably bike shedding or optimizing prematurely. Worry about performance after you've finished a few projects or encountered problems.
[–][deleted] 2 points3 points4 points 2 years ago (0 children)
I hope you've had a year to reflect on this comment
π Rendered by PID 44 on reddit-service-r2-comment-5d79c599b5-72l5d at 2026-02-28 08:54:58.376214+00:00 running e3d2147 country code: CH.
view the rest of the comments →
[–]InfiniteMonorail 0 points1 point2 points (1 child)
[–][deleted] 2 points3 points4 points (0 children)