Remove remaining Redis references

This commit is contained in:
2024-03-21 15:01:01 +00:00
parent b3df0bf249
commit 029afeb389
2 changed files with 46 additions and 46 deletions

View File

@@ -58,17 +58,17 @@ INSTALLED_APPS = [
]
# Performance optimisations
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"LOCATION": "unix:///var/run/socks/redis.sock",
"OPTIONS": {
"db": "10",
# "parser_class": "django_redis.cache.RedisCache",
"pool_class": "redis.BlockingConnectionPool",
},
}
}
# CACHES = {
# "default": {
# "BACKEND": "django_redis.cache.RedisCache",
# "LOCATION": "unix:///var/run/socks/redis.sock",
# "OPTIONS": {
# "db": "10",
# # "parser_class": "django_redis.cache.RedisCache",
# "pool_class": "redis.BlockingConnectionPool",
# },
# }
# }
# CACHE_MIDDLEWARE_ALIAS = 'default'
# CACHE_MIDDLEWARE_SECONDS = '600'
# CACHE_MIDDLEWARE_KEY_PREFIX = ''