I'm currently running a Django application with SESSION_ENGINE
configured as django.contrib.sessions.backends.cache
. I'd like to change this to django.contrib.sessions.backends.cached_db
to gain persistence.
Can I make this change without destroying the existing sessions?