While trying to use cookies, I have trying to follow the vendor’s documentation. In the documentation, I have seen this sentence Set SESSION_ENGINE to "django.contrib.sessions.backends.cache" for a simple caching but I could not find the place to change the session settings. How can I set Session engine ?
session store.
While trying to use cookies, I have trying to follow the vendor’s documentation. In
Share
Have you done the tutorial yet? If not, it’s a very good place to start.
All Django settings are in the
project/settings.pyfile.Update for comment:
The default settings are in
django/conf/global_settings.py. DO NOT modify this file! All of the settings in there can be overridden in your project’ssettings.pyfile.