diff options
author | Erik Johnston <erikj@jki.re> | 2016-08-19 16:29:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-19 16:29:58 +0100 |
commit | e6784daf0777c24a8efd2fe0c2d72f730369ad2b (patch) | |
tree | bdf2f54eaedc0d8ec3c5ecb2efde6e35521ae179 /synapse/storage/event_push_actions.py | |
parent | Merge pull request #1029 from matrix-org/erikj/appservice_stream (diff) | |
parent | Ensure invalidation list does not grow unboundedly (diff) | |
download | synapse-e6784daf0777c24a8efd2fe0c2d72f730369ad2b.tar.xz |
Merge pull request #1030 from matrix-org/erikj/cache_contexts
Add concept of cache contexts
Diffstat (limited to 'synapse/storage/event_push_actions.py')
-rw-r--r-- | synapse/storage/event_push_actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/event_push_actions.py b/synapse/storage/event_push_actions.py index df4000d0da..c65c9c9c47 100644 --- a/synapse/storage/event_push_actions.py +++ b/synapse/storage/event_push_actions.py @@ -56,7 +56,7 @@ class EventPushActionsStore(SQLBaseStore): ) self._simple_insert_many_txn(txn, "event_push_actions", values) - @cachedInlineCallbacks(num_args=3, lru=True, tree=True, max_entries=5000) + @cachedInlineCallbacks(num_args=3, tree=True, max_entries=5000) def get_unread_event_push_actions_by_room_for_user( self, room_id, user_id, last_read_event_id ): |