diff options
author | Nick Mills-Barrett <nick@fizzadar.com> | 2022-08-04 15:49:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-04 15:49:55 +0100 |
commit | 41320a0554716aaf7cec6172da98e002c48344c5 (patch) | |
tree | 63648ef0a7531327369a775fab14158b01a0b207 /synapse/storage/databases/main/roommember.py | |
parent | Update some outdated information on `sso_mapping_providers.md` (#13449) (diff) | |
download | synapse-41320a0554716aaf7cec6172da98e002c48344c5.tar.xz |
Optimise async get event lookups (#13435)
Still maintains local in memory lookup optimisation, but does any external lookup as part of the deferred that prevents duplicate lookups for the same event at once. This makes the assumption that fetching from an external cache is a non-zero load operation.
Diffstat (limited to 'synapse/storage/databases/main/roommember.py')
-rw-r--r-- | synapse/storage/databases/main/roommember.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/roommember.py b/synapse/storage/databases/main/roommember.py index e2cccc688c..93ff4816c8 100644 --- a/synapse/storage/databases/main/roommember.py +++ b/synapse/storage/databases/main/roommember.py @@ -896,7 +896,7 @@ class RoomMemberWorkerStore(EventsWorkerStore): # We don't update the event cache hit ratio as it completely throws off # the hit ratio counts. After all, we don't populate the cache if we # miss it here - event_map = await self._get_events_from_cache( + event_map = self._get_events_from_local_cache( member_event_ids, update_metrics=False ) |