Lambda Warm start
Lambda uses the same execution environment for separate invocations of the same function.
This process, called "warm start", is great because it means that consecutive runs of your function are faster than the first invocation. However, you need to be careful about Global variables and the possibility that what is thought of as an isolated run might not be as isolated as you thought.
Top comments (0)