- Practical Site Reliability Engineering
- Pethuru Raj Chelliah Shreyash Naithani Shailender Singh
- 65字
- 2021-06-10 19:08:08
Programming language selection criteria in AWS Lambda
When dealing with lambda-like functions, we should consider the launch speed of the language. For example, C# and Java are slower, while Node.js and Python are faster. Keep this information in mind when designing your service, as heavy Java or C# code will create a delay in your service response, whereas Node.js and Python will be faster.