Increased the cache option MAX_ENTRIES from 1000 to 10000 (Fixes #2828).

This commit is contained in:
Emanuel Schütze 2017-01-14 12:27:27 +01:00
parent 458a7cf7c4
commit d76162e3b0

View File

@ -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
}
}
}