diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-19 10:38:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 10:38:20 +0000 |
commit | abf1e5c52669bd41ad803d4645809b6efdfcd61d (patch) | |
tree | 7bbe7e70a39f63d4c4a3dfab947966c993cc7fba /changelog.d | |
parent | Increase DB/CPU perf of `_is_server_still_joined` check. (#6936) (diff) | |
download | synapse-abf1e5c52669bd41ad803d4645809b6efdfcd61d.tar.xz |
Tiny optimisation for _get_handler_for_request (#6950)
we have hundreds of path_regexes (see #5118), so let's not convert the same bytes to str for each of them.
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/6950.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/6950.misc b/changelog.d/6950.misc new file mode 100644 index 0000000000..1c88936b8b --- /dev/null +++ b/changelog.d/6950.misc @@ -0,0 +1 @@ +Tiny optimisation for incoming HTTP request dispatch. |