diff options
author | Erik Johnston <erik@matrix.org> | 2021-05-10 13:29:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 13:29:02 +0100 |
commit | 2b2985b5cfc4267dfb0f6b900e1a0f69f3f2cdc5 (patch) | |
tree | b12fe9c0f07eb7c452137658a819f2144bb65444 /changelog.d | |
parent | Fix port_db on empty db (#9930) (diff) | |
download | synapse-2b2985b5cfc4267dfb0f6b900e1a0f69f3f2cdc5.tar.xz |
Improve performance of backfilling in large rooms. (#9935)
We were pulling the full auth chain for the room out of the DB each time we backfilled, which can be *huge* for large rooms and is totally unnecessary.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/9935.feature | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/9935.feature b/changelog.d/9935.feature new file mode 100644 index 0000000000..eeda5bf50e --- /dev/null +++ b/changelog.d/9935.feature @@ -0,0 +1 @@ +Improve performance of backfilling in large rooms. |