Increased the cache option MAX_ENTRIES from 1000 to 10000 (Fixes #2828).
This commit is contained in:
parent
458a7cf7c4
commit
d76162e3b0
@ -127,7 +127,10 @@ MEDIA_URL = '/media/'
|
|||||||
CACHES = {
|
CACHES = {
|
||||||
'default': {
|
'default': {
|
||||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
'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