Redis – How do I manage asynchronous startup and shutdown of resources in a Tornado application?
I'd like to use aioredis in a Tornado application. However, I couldn't figure out a way to implement an async startup and shutdown of its resources since the Application class has no ASGI Lifespan events such as in Quart or…