Skip to content
Snippets Groups Projects
Commit 55e6fc91 authored by Erik Johnston's avatar Erik Johnston
Browse files

Add cache to get_forward_extremeties_for_room

parent 68c1ed4d
No related branches found
No related tags found
No related merge requests found
......@@ -173,7 +173,7 @@ class SlavedEventStore(BaseSlavedStore):
get_room_max_stream_ordering = DataStore.get_room_max_stream_ordering.__func__
get_forward_extremeties_for_room = (
DataStore.get_forward_extremeties_for_room.__func__
EventFederationStore.__dict__["get_forward_extremeties_for_room"]
)
def stream_positions(self):
......
......@@ -344,6 +344,7 @@ class EventFederationStore(SQLBaseStore):
self.get_latest_event_ids_in_room.invalidate, (room_id,)
)
@cached(max_entries=5000, num_args=2)
def get_forward_extremeties_for_room(self, room_id, stream_ordering):
"""For a given room_id and stream_ordering, return the forward
extremeties of the room at that point in "time".
......
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