Is it possible to keep an AWS Lambda function warm?
问题 There are a few pieces of my app that cannot afford the additional 1-2 second delay caused by the "freeze-thaw" cycle that Lambda functions go through when they're new or unused for some period of time. How can I keep these Lambda functions warm so AWS doesn't have to re-provision them all the time? This goes for both 1) infrequently-used functions and 2) recently-deployed functions. Ideally, there is a setting that I missed called "keep warm" that increases the cost of the Lambda functions,