From a1d13ba3cef287949865dfd2474a37bdb0be9d2d Mon Sep 17 00:00:00 2001 From: Oliver Falk Date: Wed, 13 Aug 2025 21:40:37 +0200 Subject: [PATCH] MAX_ENTRIES for PyMemcacheCache doesn't work with all versions - remove it. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 41c6a74..aed54fb 100644 --- a/config.py +++ b/config.py @@ -213,7 +213,7 @@ CACHES = { "LOCATION": [ "127.0.0.1:11211", ], - "OPTIONS": {"MAX_ENTRIES": 1000000}, + #"OPTIONS": {"MAX_ENTRIES": 1000000}, }, "filesystem": { "BACKEND": "django.core.cache.backends.filebased.FileBasedCache",