mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-16 23:11:34 +01:00
Use efficient .intersection
This commit is contained in:
parent
850238b4ef
commit
b2aa05a8d6
1 changed files with 1 additions and 4 deletions
|
@ -80,10 +80,7 @@ class StreamChangeCache(object):
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
result = {
|
result = changed_entities.intersection(entities)
|
||||||
e for e in entities
|
|
||||||
if e in changed_entities
|
|
||||||
}
|
|
||||||
|
|
||||||
self.metrics.inc_hits()
|
self.metrics.inc_hits()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue