Change Redis cache

This commit is contained in:
2024-06-10 05:28:31 +01:00
parent e10c6f5c46
commit a788a65ba6
4 changed files with 4 additions and 3 deletions

View File

@@ -60,11 +60,11 @@ INSTALLED_APPS = [
# Performance optimisations
CACHES = {
"default": {
"BACKEND": "django.core.cache.backends.redis.RedisCache",
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "unix:///var/run/socks/redis.sock",
"OPTIONS": {
"db": "10",
"parser_class": "redis.connection.HiredisParser",
# "parser_class": "django_redis.cache.RedisCache",
"pool_class": "redis.BlockingConnectionPool",
},
}