When using functions-as-a-service/serverless technologies like Google Cloud Functions, AWS Lambdas, or Azure Functions, you must consider cold starts. A cold start increases the response time for a new instance when it first handles a request. That is why minimizing or eliminating needless cold starts is so important. Google has recently…