I want to use effect library in aws lambda functions. AWS lambda is a js code, with exported handler. this handler gets called when a user executes a lambda. The code which is outside of the handler gets initialized only once when AWS Lambda initializes a lambda function (it's called cold start). A lambda function states warm for consequent calls. Here's question: Can I initialize runtime for my effects outside of that handler so that next calls won't require effect layer initialization