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

Reduce _get_state_group_for_event cache size

parent b4da08ca
No related branches found
No related tags found
No related merge requests found
......@@ -507,7 +507,7 @@ class StateStore(SQLBaseStore):
state_map = yield self.get_state_ids_for_events([event_id], types)
defer.returnValue(state_map[event_id])
@cached(num_args=2, max_entries=100000)
@cached(num_args=2, max_entries=50000)
def _get_state_group_for_event(self, room_id, event_id):
return self._simple_select_one_onecol(
table="event_to_state_groups",
......
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