Merge pull request #2857 from emanuelschuetze/issue2828

Increased the cache option MAX_ENTRIES from 1000 to 10000 (Fixes #2828).
This commit is contained in:
Norman Jäckel 2017-01-14 15:10:50 +01:00 committed by GitHub
commit a8fd42f26b

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