summary refs log tree commit diff
path: root/synapse/storage/_base.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-09-01 13:11:55 +0100
committerErik Johnston <erik@matrix.org>2015-09-01 13:11:55 +0100
commitb62c1395d6b5269fa3020616eee5865e9c39dec2 (patch)
treea4e932cdc28a87752795626d6c8cce1b23e8a2e1 /synapse/storage/_base.py
parentdon't log the whole DB config (including postgres password...) (diff)
parentMerge pull request #261 from matrix-org/erikj/scripts_clean (diff)
downloadsynapse-b62c1395d6b5269fa3020616eee5865e9c39dec2.tar.xz
Merge branch 'release-v0.10.0' of github.com:matrix-org/synapse into develop
Diffstat (limited to 'synapse/storage/_base.py')
-rw-r--r--synapse/storage/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py
index ce71389f02..495ef087c9 100644
--- a/synapse/storage/_base.py
+++ b/synapse/storage/_base.py
@@ -167,7 +167,7 @@ class SQLBaseStore(object):
         self._get_event_cache = Cache("*getEvent*", keylen=3, lru=True,
                                       max_entries=hs.config.event_cache_size)
 
-        self._state_group_cache = DictionaryCache("*stateGroupCache*", 100000)
+        self._state_group_cache = DictionaryCache("*stateGroupCache*", 2000)
 
         self._event_fetch_lock = threading.Condition()
         self._event_fetch_list = []