django-redis-sessions
django-redis-sessions copied to clipboard
Session backend for Django that stores sessions in a Redis database
I tried this on a simple redis install in Kubernetes with an environment variable and worked flawlessly. I came across redis-py-cluster pip module. When I try cluster with kubernetes I...
We've recently encountered instability issues with a redis instance in our infrastructure. This generated many user unwanted disconnections but no errors were tracked server side. The problem was that we...
In session.py in the setting of the ```session.SESSION_REDIS_[VAR]``` varialbes after the check for if the session pool setting has been set does not work. Currently: ``` if settings.SESSION_REDIS_POOL is not...
Hi, we are using django-redis-sessions in our project and it works fine but we want to secure redis-django connection. Is this possible in some way? Thanks.
I relize that when i logout old session key still remaining. Then I get some problem when try to clear session by execute command: `python manage.py clearsessions` then get :...
解决redis-sentinel 不能设置密码问题
I've spent all morning tracking this problem down, but I think I've finally cracked it! If there is [any exception at all](https://github.com/martinrusev/django-redis-sessions/blob/master/redis_sessions/session.py#L116) when attempting to load the session, the session...
I don't understand how I can put the password for redis_sentinel because settings.SESSION_REDIS_PASSWORD doesn't use in session.py for sentinel. `password=getattr(settings, 'password', None)` Thankful in advance for your answer.