diff options
author | Erik Johnston <erik@matrix.org> | 2017-03-29 16:44:21 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-04-28 09:52:36 +0100 |
commit | 421fdf74609439edaaffce117436e6a6df147841 (patch) | |
tree | 37ff2bbc33663053c37241d5faf2addac1eb1ccc /synapse/visibility.py | |
parent | Merge pull request #2160 from matrix-org/erikj/reduce_join_cache_size (diff) | |
download | synapse-421fdf74609439edaaffce117436e6a6df147841.tar.xz |
Speed up filtering of a single event in push
Diffstat (limited to 'synapse/visibility.py')
-rw-r--r-- | synapse/visibility.py | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/synapse/visibility.py b/synapse/visibility.py index c4dd9ae2c7..5590b866ed 100644 --- a/synapse/visibility.py +++ b/synapse/visibility.py @@ -189,25 +189,6 @@ def filter_events_for_clients(store, user_tuples, events, event_id_to_state): @defer.inlineCallbacks -def filter_events_for_clients_context(store, user_tuples, events, event_id_to_context): - user_ids = set(u[0] for u in user_tuples) - event_id_to_state = {} - for event_id, context in event_id_to_context.items(): - state = yield store.get_events([ - e_id - for key, e_id in context.current_state_ids.iteritems() - if key == (EventTypes.RoomHistoryVisibility, "") - or (key[0] == EventTypes.Member and key[1] in user_ids) - ]) - event_id_to_state[event_id] = state - - res = yield filter_events_for_clients( - store, user_tuples, events, event_id_to_state - ) - defer.returnValue(res) - - -@defer.inlineCallbacks def filter_events_for_client(store, user_id, events, is_peeking=False): """ Check which events a user is allowed to see |