Firebase Cloud Functions execution time is so fluctuate
问题 I got this from google cloud console. I don't understand why after the function is executed, it should turn hot for some duration. However, after deploying the function and call it, I found cold start and then drop to actual and then increase to cold start again. Please help! // index.js import * as functions from 'firebase-functions' import express from 'express' import cors from 'cors' import auth from 'controllers/auth' const authApp = express() authApp.use(cors({ origin: true })) authApp