summary refs log tree commit diff
path: root/docs/admin_api (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-02-19Tiny optimisation for _get_handler_for_request (#6950)Richard van der Hoff2-1/+4
we have hundreds of path_regexes (see #5118), so let's not convert the same bytes to str for each of them.
2020-02-19Increase DB/CPU perf of `_is_server_still_joined` check. (#6936)Erik Johnston3-15/+60
* Increase DB/CPU perf of `_is_server_still_joined` check. For rooms with large amount of state a single user leaving could cause us to go and load a lot of membership events and then pull out membership state in a large number of batches. * Newsfile *