diff options
author | Erik Johnston <erik@matrix.org> | 2017-05-02 10:40:31 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-05-15 15:11:13 +0100 |
commit | bfbc907cec96ce9a64730930f63ed400c1aa3b5b (patch) | |
tree | 84918881fd3ccd1fd04e4fc5dfe4078168de34dc /synapse/storage/state.py | |
parent | Merge pull request #2214 from matrix-org/rav/hurry_up_purge (diff) | |
download | synapse-bfbc907cec96ce9a64730930f63ed400c1aa3b5b.tar.xz |
Prefill state caches
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index a16afa8df5..1e1ce87e0e 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -227,6 +227,14 @@ class StateStore(SQLBaseStore): ], ) + txn.call_after( + self._state_group_cache.update, + self._state_group_cache.sequence, + key=context.state_group, + value=context.current_state_ids, + full=True, + ) + self._simple_insert_many_txn( txn, table="event_to_state_groups", |