A Redis session backend for Django, providing high-performance session storage. Current version is 0.6.2, released in 2017. The project is in maintenance mode with no recent updates.
pip install django-redis-sessionsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Configure Django to use Redis sessions by setting SESSION_ENGINE and optionally SESSION_REDIS dict. Ensure redis is running.
Use dict format: SESSION_REDIS = {'host': ..., 'port': ..., ...}For Django 4+, ensure you have no deprecated settings; test session behavior.
Use simple prefix without colons or use a separate Redis db.
Replace SESSION_REDIS_HOST, SESSION_REDIS_PORT, etc. with SESSION_REDIS = {'host': ..., 'port': ...}