diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-10-19 12:20:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 12:20:29 +0100 |
commit | 97647b33c248f25571bae617365d95434e6a3d5f (patch) | |
tree | 044641744fc53b9af803f6adb9b914eaa7083f43 /synapse/storage/databases/main/events.py | |
parent | Pre-emptively fix synapse.storage.types.Connection for future mypy release (#... (diff) | |
download | synapse-97647b33c248f25571bae617365d95434e6a3d5f.tar.xz |
Replace DeferredCache with LruCache where possible (#8563)
Most of these uses don't need a full-blown DeferredCache; LruCache is lighter and more appropriate.
Diffstat (limited to 'synapse/storage/databases/main/events.py')
-rw-r--r-- | synapse/storage/databases/main/events.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/storage/databases/main/events.py b/synapse/storage/databases/main/events.py index ba3b1769b0..87808c1483 100644 --- a/synapse/storage/databases/main/events.py +++ b/synapse/storage/databases/main/events.py @@ -1051,9 +1051,7 @@ class PersistEventsStore: def prefill(): for cache_entry in to_prefill: - self.store._get_event_cache.prefill( - (cache_entry[0].event_id,), cache_entry - ) + self.store._get_event_cache.set((cache_entry[0].event_id,), cache_entry) txn.call_after(prefill) |