I have a quick question around functions. Are they reused between multiple requests? If I set a glob

I have a quick question around functions. Are they reused between multiple requests? If I set a global Logger that collects logs and then at the end of the request I do ctx.waitUntil(logger.flush()) will another global Logger be re-created on the next request or can the same instance be reused with another request?
Was this page helpful?