forked from MirrorHub/synapse
Merge pull request #3382 from matrix-org/rav/optimise_state_groups
Optimise state_group_cache update
This commit is contained in:
commit
240f192523
1 changed files with 1 additions and 5 deletions
|
@ -567,11 +567,7 @@ class StateGroupWorkerStore(SQLBaseStore):
|
||||||
# from the database.
|
# from the database.
|
||||||
for group, group_state_dict in iteritems(group_to_state_dict):
|
for group, group_state_dict in iteritems(group_to_state_dict):
|
||||||
state_dict = results[group]
|
state_dict = results[group]
|
||||||
|
state_dict.update(group_state_dict)
|
||||||
state_dict.update(
|
|
||||||
((intern_string(k[0]), intern_string(k[1])), to_ascii(v))
|
|
||||||
for k, v in iteritems(group_state_dict)
|
|
||||||
)
|
|
||||||
|
|
||||||
self._state_group_cache.update(
|
self._state_group_cache.update(
|
||||||
cache_seq_num,
|
cache_seq_num,
|
||||||
|
|
Loading…
Reference in a new issue