Increase cache entries

This commit is contained in:
Oliver Falk
2025-05-24 16:15:02 +02:00
parent 5dcd69f332
commit 1892e9585e

View File

@@ -213,11 +213,13 @@ CACHES = {
"LOCATION": [
"127.0.0.1:11211",
],
"OPTIONS": {"MAX_ENTRIES": 1000000},
},
"filesystem": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
"LOCATION": "/var/tmp/ivatar_cache",
"TIMEOUT": 900, # 15 minutes
"OPTIONS": {"MAX_ENTRIES": 1000000},
},
}