Skip to content
Snippets Groups Projects
Unverified Commit 71ad43a8 authored by Matthew Hodgson's avatar Matthew Hodgson Committed by GitHub
Browse files

Merge pull request #3452 from matrix-org/revert-3451-hawkowl/sorteddict-api

Revert "Try to not use as much CPU in the StreamChangeCache"
parents d91efb06 8057489b
No related branches found
No related tags found
No related merge requests found
...@@ -78,8 +78,7 @@ class StreamChangeCache(object): ...@@ -78,8 +78,7 @@ class StreamChangeCache(object):
not_known_entities = set(entities) - set(self._entity_to_key) not_known_entities = set(entities) - set(self._entity_to_key)
result = ( result = (
{self._cache[k] for k in self._cache.islice( set(self._cache.values()[self._cache.bisect_right(stream_pos) :])
start=self._cache.bisect_right(stream_pos))}
.intersection(entities) .intersection(entities)
.union(not_known_entities) .union(not_known_entities)
) )
...@@ -114,8 +113,7 @@ class StreamChangeCache(object): ...@@ -114,8 +113,7 @@ class StreamChangeCache(object):
assert type(stream_pos) is int assert type(stream_pos) is int
if stream_pos >= self._earliest_known_stream_pos: if stream_pos >= self._earliest_known_stream_pos:
return [self._cache[k] for k in self._cache.islice( return self._cache.values()[self._cache.bisect_right(stream_pos) :]
start=self._cache.bisect_right(stream_pos))]
else: else:
return None return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment