summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-09-07 16:48:52 +0100
committerGitHub <noreply@github.com>2020-09-07 16:48:52 +0100
commitef2804d27c766595f9eae134422652d1d32df9a6 (patch)
treea4e331a24dbe5595463599c4cf23849f6ab76a3f /changelog.d
parentFix unread count failing on NULL values (#8270) (diff)
downloadsynapse-ef2804d27c766595f9eae134422652d1d32df9a6.tar.xz
Avoid table-scanning users at startup (#8271)
This takes about 10 seconds in the best case; often more.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/8271.bugfix1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8271.bugfix b/changelog.d/8271.bugfix
new file mode 100644
index 0000000000..b75f07b03c
--- /dev/null
+++ b/changelog.d/8271.bugfix
@@ -0,0 +1 @@
+Fix slow start times for large servers by removing a table scan of the `users` table from startup code.