|
|
|
|
|
by fivea
1533 days ago
|
|
> AWS lambda has a bunch of python specific optimisations that make python the best candidate for lambdas (...) I don't believe there is any truth to this statement. The general guidelines for AWS lambda is that a) if you seek performance then Go is the way to go, b) for everything else nodejs (i.e., JavaScript/typescript) is by far the best runtime, specially given lambda's single-threaded nature and nodejs's support for concurrency. All other options are only relevant if you have very specific non-technical constraints, such as wanting to reuse code (JDK) or just leveraging whatever language your team already uses somewhere else. |
|