diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-06 13:52:49 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-06 13:52:49 +0100 |
commit | 8049c9a71e3c6187a600e41969d99537c63fad67 (patch) | |
tree | 6d4dbf2656816e1506f16c272fd4d8c5357fea2e /synapse/storage/push_rule.py | |
parent | Up the cache size for 'get_joined_hosts_for_room' and 'get_users_in_room' (diff) | |
parent | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/cached_key... (diff) | |
download | synapse-8049c9a71e3c6187a600e41969d99537c63fad67.tar.xz |
Merge pull request #209 from matrix-org/erikj/cached_keyword_args
Add support for using keyword arguments with cached functions
Diffstat (limited to 'synapse/storage/push_rule.py')
-rw-r--r-- | synapse/storage/push_rule.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/synapse/storage/push_rule.py b/synapse/storage/push_rule.py index 4cac118d17..a220f3632e 100644 --- a/synapse/storage/push_rule.py +++ b/synapse/storage/push_rule.py @@ -13,7 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from ._base import SQLBaseStore, cached +from ._base import SQLBaseStore, cachedInlineCallbacks from twisted.internet import defer import logging @@ -23,8 +23,7 @@ logger = logging.getLogger(__name__) class PushRuleStore(SQLBaseStore): - @cached() - @defer.inlineCallbacks + @cachedInlineCallbacks() def get_push_rules_for_user(self, user_name): rows = yield self._simple_select_list( table=PushRuleTable.table_name, @@ -41,8 +40,7 @@ class PushRuleStore(SQLBaseStore): defer.returnValue(rows) - @cached() - @defer.inlineCallbacks + @cachedInlineCallbacks() def get_push_rules_enabled_for_user(self, user_name): results = yield self._simple_select_list( table=PushRuleEnableTable.table_name, |