Switch from django-redis to the built-in Redis cache backend

This commit is contained in:
Bart Schuurmans 2024-04-01 22:07:01 +02:00
parent 03ac846b5d
commit 2896219e88
2 changed files with 2 additions and 5 deletions

View file

@ -257,11 +257,8 @@ if env.bool("USE_DUMMY_CACHE", False):
else:
CACHES = {
"default": {
"BACKEND": "django_redis.cache.RedisCache",
"BACKEND": "django.core.cache.backends.redis.RedisCache",
"LOCATION": REDIS_ACTIVITY_URL,
"OPTIONS": {
"CLIENT_CLASS": "django_redis.client.DefaultClient",
},
},
"file_resubmit": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",

View file

@ -12,12 +12,12 @@ django-imagekit==5.0.0
django-model-utils==4.4.0
django-oauth-toolkit==2.3.0
django-pgtrigger==4.11.0
django-redis==5.2.0
django-sass-processor==1.4
django-storages==1.14.2
django-storages[azure]
environs==11.0.0
flower==2.0.1
hiredis==2.3.2
libsass==0.23.0
Markdown==3.6
opentelemetry-api==1.24.0