summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-06-26 18:36:29 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-06-26 18:36:29 +0100
commitaae6d3ff69480ae6a3b30a854a052dda67e549c9 (patch)
treecb79512df564898dbb705149c1727fe689fef854 /synapse/util
parentMerge remote-tracking branch 'origin/hawkowl/sorteddict-api' into matrix-org-... (diff)
parentRevert "Try to not use as much CPU in the StreamChangeCache" (diff)
downloadsynapse-aae6d3ff69480ae6a3b30a854a052dda67e549c9.tar.xz
Merge remote-tracking branch 'origin/revert-3451-hawkowl/sorteddict-api' into matrix-org-hotfixes
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/caches/stream_change_cache.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/util/caches/stream_change_cache.py b/synapse/util/caches/stream_change_cache.py

index 0fb8620001..817118e30f 100644 --- a/synapse/util/caches/stream_change_cache.py +++ b/synapse/util/caches/stream_change_cache.py
@@ -78,8 +78,7 @@ class StreamChangeCache(object): not_known_entities = set(entities) - set(self._entity_to_key) result = ( - {self._cache[k] for k in self._cache.islice( - start=self._cache.bisect_right(stream_pos))} + set(self._cache.values()[self._cache.bisect_right(stream_pos) :]) .intersection(entities) .union(not_known_entities) ) @@ -114,8 +113,7 @@ class StreamChangeCache(object): assert type(stream_pos) is int if stream_pos >= self._earliest_known_stream_pos: - return [self._cache[k] for k in self._cache.islice( - start=self._cache.bisect_right(stream_pos))] + return self._cache.values()[self._cache.bisect_right(stream_pos) :] else: return None