Optimise state_group_cache update

(1) matrix-org-hotfixes has removed the intern calls; let's do the same here.
(2) remove redundant iteritems() so we can used an optimised db update.
pull/3382/head
Richard van der Hoff 2018-06-11 22:56:11 +01:00
parent c6b1441c52
commit eb32b2ca20
1 changed files with 1 additions and 5 deletions

View File

@ -567,11 +567,7 @@ class StateGroupWorkerStore(SQLBaseStore):
# from the database.
for group, group_state_dict in iteritems(group_to_state_dict):
state_dict = results[group]
state_dict.update(
((intern_string(k[0]), intern_string(k[1])), to_ascii(v))
for k, v in iteritems(group_state_dict)
)
state_dict.update(group_state_dict)
self._state_group_cache.update(
cache_seq_num,