diff options
author | Erik Johnston <erik@matrix.org> | 2016-01-29 13:37:40 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-01-29 13:37:40 +0000 |
commit | ebc5f00efed5c7f72601933f55032947077c50a0 (patch) | |
tree | f87f07931b35019337fb4f0f38081a113f37e4c9 /synapse | |
parent | Don't work out unread_notifs_for_room_id unless needed (diff) | |
download | synapse-ebc5f00efed5c7f72601933f55032947077c50a0.tar.xz |
Bump AccountDataAndTagsChangeCache size
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/storage/account_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/account_data.py b/synapse/storage/account_data.py index 822c8bbe00..ed6587429b 100644 --- a/synapse/storage/account_data.py +++ b/synapse/storage/account_data.py @@ -30,7 +30,7 @@ class AccountDataStore(SQLBaseStore): self._account_data_stream_cache = StreamChangeCache( "AccountDataAndTagsChangeCache", self._account_data_id_gen.get_max_token(None), - max_size=1000, + max_size=10000, ) def get_account_data_for_user(self, user_id): |