From d76162e3b0c3275c9320c527c64a51cdaa720c47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20Sch=C3=BCtze?= Date: Sat, 14 Jan 2017 12:27:27 +0100 Subject: [PATCH] Increased the cache option MAX_ENTRIES from 1000 to 10000 (Fixes #2828). --- openslides/global_settings.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openslides/global_settings.py b/openslides/global_settings.py index 1f4bb8175..ffcd23083 100644 --- a/openslides/global_settings.py +++ b/openslides/global_settings.py @@ -127,7 +127,10 @@ MEDIA_URL = '/media/' CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.locmem.LocMemCache', - 'LOCATION': 'openslides-cache' + 'LOCATION': 'openslides-cache', + 'OPTIONS': { + 'MAX_ENTRIES': 10000 + } } }