As the push for serverless applications moves on, I was curious as to which languages were best suited for serverless execution:
Not surprisingly, Java and C# don't seem like such a great fit due to their cold-start latency, which is something I've noticed with Lambdas in AWS in the past. If you want a quick response to a serverless request (such as API requests), probably something like Golang, Python, or Node.js are the way to go; C# and Java should probably be saved for jobs not requiring immediate responsiveness.
Comments
Post a Comment