summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-05-18 17:17:53 +0100
committerErik Johnston <erik@matrix.org>2017-05-18 17:17:53 +0100
commit107ac7ac9690e638f62924eba6c29d192632c75a (patch)
tree0502ac60ca3723cf540cce82f4e3d5cb0bd13c78 /synapse
parentMerge pull request #2233 from matrix-org/erikj/faster_as_check (diff)
downloadsynapse-107ac7ac9690e638f62924eba6c29d192632c75a.tar.xz
Increase size of push rule caches
Diffstat (limited to 'synapse')
-rw-r--r--synapse/storage/push_rule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/push_rule.py b/synapse/storage/push_rule.py

index 0a819d32c5..8758b1c0c7 100644 --- a/synapse/storage/push_rule.py +++ b/synapse/storage/push_rule.py
@@ -49,7 +49,7 @@ def _load_rules(rawrules, enabled_map): class PushRuleStore(SQLBaseStore): - @cachedInlineCallbacks() + @cachedInlineCallbacks(max_entries=5000) def get_push_rules_for_user(self, user_id): rows = yield self._simple_select_list( table="push_rules", @@ -73,7 +73,7 @@ class PushRuleStore(SQLBaseStore): defer.returnValue(rules) - @cachedInlineCallbacks() + @cachedInlineCallbacks(max_entries=5000) def get_push_rules_enabled_for_user(self, user_id): results = yield self._simple_select_list( table="push_rules_enable",