Merge pull request #2857 from emanuelschuetze/issue2828
Increased the cache option MAX_ENTRIES from 1000 to 10000 (Fixes #2828).
This commit is contained in:
commit
a8fd42f26b
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user