diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-09-07 16:48:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 16:48:52 +0100 |
commit | ef2804d27c766595f9eae134422652d1d32df9a6 (patch) | |
tree | a4e331a24dbe5595463599c4cf23849f6ab76a3f /changelog.d | |
parent | Fix unread count failing on NULL values (#8270) (diff) | |
download | synapse-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.bugfix | 1 |
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. |