diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-11-06 15:41:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-06 15:41:57 -0500 |
commit | 7e5d3b06fa8b6ce3676eb1178d7db0e252d48679 (patch) | |
tree | 868dd9c257a232886080e1a65a7588daa45c29aa /changelog.d | |
parent | Bump setuptools_rust to match pinned version. (#16605) (diff) | |
download | synapse-7e5d3b06fa8b6ce3676eb1178d7db0e252d48679.tar.xz |
Collect information for PushRuleEvaluator in parallel. (#16590)
Fetch information needed for push rule evaluation in parallel. Ideally this would use query pipelining, but this is not available in psycopg2. Due to the database thread pool this may result in little to no parallelization.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/16590.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/16590.misc b/changelog.d/16590.misc new file mode 100644 index 0000000000..6db04b0c98 --- /dev/null +++ b/changelog.d/16590.misc @@ -0,0 +1 @@ +Run push rule evaluator setup in parallel. |