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": [ "LOCATION": [
"127.0.0.1:11211", "127.0.0.1:11211",
], ],
"OPTIONS": {"MAX_ENTRIES": 1000000},
}, },
"filesystem": { "filesystem": {
"BACKEND": "django.core.cache.backends.filebased.FileBasedCache", "BACKEND": "django.core.cache.backends.filebased.FileBasedCache",
"LOCATION": "/var/tmp/ivatar_cache", "LOCATION": "/var/tmp/ivatar_cache",
"TIMEOUT": 900, # 15 minutes "TIMEOUT": 900, # 15 minutes
"OPTIONS": {"MAX_ENTRIES": 1000000},
}, },
} }