0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-29 06:29:26 +02:00

Explain why we're prefilling dict with Nones

This commit is contained in:
Erik Johnston 2015-08-12 17:16:30 +01:00
parent 101ee3fd00
commit c10ac7806e

View file

@ -412,6 +412,10 @@ class StateStore(SQLBaseStore):
for group, state_ids in group_state_dict.items():
if types:
# We delibrately put key -> None mappings into the cache to
# cache absence of the key, on the assumption that if we've
# explicitly asked for some types then we will probably ask
# for them again.
state_dict = {
key: None
for key in types