I’m trying to understand how netlify counts invocations. I’m having api routes for my nextjs app.
Making 10 GET /api/users/:id requests counted as ten invocations? or just the first call (cold start) to start the function and subsequent requests until the function sleeps counted as 1 invocation?
From my experience, I would assume that 1 invocation is per function call regardless of cold or warm (Realistically it could stay warm for 5 mins but I don’t think there’s any guarantee you use the same lambda unless you manage specific connection keys so maybe 1 in 10* use the same connection anyways?)