I am creating large session objects in my app. When I use cached_db
backend, the response time gets significantly longer because the session objects are written to the DB before the response is returned to the user. Is there a way to save the sessions after the response is returned?
Note: This behavior doesn't happen when I use cache
backend.