Change Redis parser class
This commit is contained in:
parent
f62f0881a1
commit
a519a4ce5e
|
@ -50,11 +50,11 @@ INSTALLED_APPS = [
|
||||||
# Performance optimisations
|
# Performance optimisations
|
||||||
CACHES = {
|
CACHES = {
|
||||||
"default": {
|
"default": {
|
||||||
"BACKEND": "django.core.cache.backends.redis.RedisCache",
|
"BACKEND": "django_redis.cache.RedisCache",
|
||||||
"LOCATION": "unix:///var/run/socks/redis.sock",
|
"LOCATION": "unix:///var/run/socks/redis.sock",
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"db": "10",
|
"db": "10",
|
||||||
"parser_class": "redis.connection.HiredisParser",
|
# "parser_class": "django_redis.cache.RedisCache",
|
||||||
"pool_class": "redis.BlockingConnectionPool",
|
"pool_class": "redis.BlockingConnectionPool",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,3 +26,4 @@ git+https://git.zm.is/XF/django-crud-mixins
|
||||||
redis
|
redis
|
||||||
hiredis
|
hiredis
|
||||||
django-cachalot
|
django-cachalot
|
||||||
|
django_redis
|
||||||
|
|
Loading…
Reference in New Issue