2👍
✅
EDIT: Apparently I read the cache provider wrong, the below answer is the solution for django-redis-cache
, not django-redis
. I’ll let the answer remain though, since changing cache provider and using this config seems to have solved the problem.
You should not need the unix:
prefix, and the backend setting looks strange;
'default': {
'BACKEND': 'redis_cache.RedisCache',
'LOCATION': '/tmp/redis.sock',
'OPTIONS': { ...
Source:stackexchange.com