Up cache max entries for state

This commit is contained in:
Erik Johnston 2017-01-16 15:08:17 +00:00
parent 46aebbbcbf
commit 897f8752da
3 changed files with 3 additions and 3 deletions

View file

@ -284,7 +284,7 @@ class StateStore(SQLBaseStore):
return [r[0] for r in results]
return self.runInteraction("get_current_state_for_key", f)
@cached(num_args=2, max_entries=50000, iterable=True)
@cached(num_args=2, max_entries=100000, iterable=True)
def _get_state_group_from_group(self, group, types):
raise NotImplementedError()