diff options
author | Erik Johnston <erik@matrix.org> | 2020-05-05 17:07:59 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2020-05-05 17:40:29 +0100 |
commit | f9073893af82eec64b594dbcaef37c407a291c52 (patch) | |
tree | 6b57fce16886aef99c6e796900822290866a38df /synapse/handlers | |
parent | Workaround for assertion errors from db_query_to_update_function (#7378) (diff) | |
download | synapse-f9073893af82eec64b594dbcaef37c407a291c52.tar.xz |
Speed up fetching device lists changes in sync.
Currently we copy `users_who_share_room` needlessly about three times, which is expensive when the set is large (which it can easily be).
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/sync.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 4f76b7a743..00718d7f2d 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -1143,10 +1143,14 @@ class SyncHandler(object): user_id ) - tracked_users = set(users_who_share_room) - - # Always tell the user about their own devices - tracked_users.add(user_id) + # Always tell the user about their own devices. We check as the user + # ID is almost certainly already included (unless they're not in any + # rooms) and taking a copy of the set is relatively expensive. + if user_id not in users_who_share_room: + users_who_share_room = set(users_who_share_room) + users_who_share_room.add(user_id) + + tracked_users = users_who_share_room # Step 1a, check for changes in devices of users we share a room with users_that_have_changed = await self.store.get_users_whose_devices_changed( |