summary refs log tree commit diff
path: root/synapse/util/caches/stream_change_cache.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-07-17 10:04:33 +0100
committerErik Johnston <erik@matrix.org>2018-07-17 10:04:33 +0100
commitf793ff45714293bc2b654eeb47987054af034f29 (patch)
tree8a08fb4a6cb596c9ff4bf030abf5752bb9a209ad /synapse/util/caches/stream_change_cache.py
parentMerge branch 'develop' into matrix-org-hotfixes (diff)
parentMerge pull request #3530 from matrix-org/erikj/stream_cache (diff)
downloadsynapse-f793ff45714293bc2b654eeb47987054af034f29.tar.xz
Merge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'synapse/util/caches/stream_change_cache.py')
-rw-r--r--synapse/util/caches/stream_change_cache.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/synapse/util/caches/stream_change_cache.py b/synapse/util/caches/stream_change_cache.py

index a1f8ff8f10..258655349b 100644 --- a/synapse/util/caches/stream_change_cache.py +++ b/synapse/util/caches/stream_change_cache.py
@@ -74,19 +74,12 @@ class StreamChangeCache(object): assert type(stream_pos) is int if stream_pos >= self._earliest_known_stream_pos: - changed_entities = { + result = { self._cache[k] for k in self._cache.islice( start=self._cache.bisect_right(stream_pos), ) } - # we need to include entities which we don't know about, as well as - # those which are known to have changed since the stream pos. - result = { - e for e in entities - if e in changed_entities or e not in self._entity_to_key - } - self.metrics.inc_hits() else: result = set(entities)