aws-lambda-runtimes-performance

AWS Lambda Performance comparison (by Aleksandr-Filichkin)

Aws-lambda-runtimes-performance Alternatives

Similar projects and alternatives to aws-lambda-runtimes-performance

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better aws-lambda-runtimes-performance alternative or higher similarity.

aws-lambda-runtimes-performance reviews and mentions

Posts with mentions or reviews of aws-lambda-runtimes-performance. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-07-24.
  • The Case for C# and .NET
    18 projects | news.ycombinator.com | 24 Jul 2022
  • AWS Lambda Cold Start Times
    8 projects | news.ycombinator.com | 12 Oct 2021
    > NodeJs is the slowest runtime, after some time it becomes better(JIT?) but still is not good enough. In addition, we see the NodeJS has the worst maximum duration.

    The conclusion drawn about NodeJS performance is flawed due to a quirk of the default settings in the AWS SDK for JS compared to other languages. By default, it opens and closes a TCP connection for each request. That overhead can be greater than the time actually needed to interact with DDB.

    I submitted a pull request to fix that configuration[0]. I expect the performance of NodeJS warm starts to look quite a bit better after that.

    [0]: https://github.com/Aleksandr-Filichkin/aws-lambda-runtimes-p...