Chore: Use memory cache backend in debug mode (#5666)

This commit is contained in:
shamoon 2024-02-06 07:16:15 -08:00 committed by GitHub
parent 4813a7bc70
commit 4606caeaa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -771,6 +771,11 @@ CACHES = {
},
}
if DEBUG and os.getenv("PAPERLESS_CACHE_BACKEND") is None:
CACHES["default"][
"BACKEND"
] = "django.core.cache.backends.locmem.LocMemCache" # pragma: no cover
def default_threads_per_worker(task_workers) -> int:
# always leave one core open