diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-01-07 08:03:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 13:03:38 +0000 |
commit | 23d701864fedbc40863b34c9c46c134295dd0a35 (patch) | |
tree | 87a76a8d40a8443ce9bfc6d3c7970560ee2b2a80 /synapse/storage/prepare_database.py | |
parent | tox: Add a -noextras factor (#9030) (diff) | |
download | synapse-23d701864fedbc40863b34c9c46c134295dd0a35.tar.xz |
Improve the performance of calculating ignored users in large rooms (#9024)
This allows for efficiently finding which users ignore a particular user. Co-authored-by: Erik Johnston <erik@matrix.org>
Diffstat (limited to 'synapse/storage/prepare_database.py')
-rw-r--r-- | synapse/storage/prepare_database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/prepare_database.py b/synapse/storage/prepare_database.py index 6684403a0a..01efb2cabb 100644 --- a/synapse/storage/prepare_database.py +++ b/synapse/storage/prepare_database.py @@ -38,7 +38,7 @@ logger = logging.getLogger(__name__) # XXX: If you're about to bump this to 59 (or higher) please create an update # that drops the unused `cache_invalidation_stream` table, as per #7436! # XXX: Also add an update to drop `account_data_max_stream_id` as per #7656! -SCHEMA_VERSION = 58 +SCHEMA_VERSION = 59 dir_path = os.path.abspath(os.path.dirname(__file__)) |