summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2021-05-10 13:29:02 +0100
committerGitHub <noreply@github.com>2021-05-10 13:29:02 +0100
commit2b2985b5cfc4267dfb0f6b900e1a0f69f3f2cdc5 (patch)
treeb12fe9c0f07eb7c452137658a819f2144bb65444 /changelog.d
parentFix port_db on empty db (#9930) (diff)
downloadsynapse-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.feature1
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.