We're using cached_db as our SESSION_ENGINE. We have a session duplication issue, this is the scenario:
- User 1 is browsing the system.
- User 2 is browsing and modifying his session.
- User 1 continuing browsing and finds that his session changed to User's 2 session.
If we use SESSION_SAVE_EVERY_REQUEST then it works fine but we want to fix this problem from the source.
We are using Django 1.6 with Redis