diff options
author | Jason Robinson <jasonr@matrix.org> | 2021-01-11 23:43:58 +0200 |
---|---|---|
committer | Jason Robinson <jasonr@matrix.org> | 2021-01-11 23:43:58 +0200 |
commit | da16d06301aec83d144812d727c24192eb890c93 (patch) | |
tree | 5703656a516b8048716cc04c281491bff662a3bd /docs | |
parent | Clarify rooms.md (diff) | |
download | synapse-da16d06301aec83d144812d727c24192eb890c93.tar.xz |
Address pr feedback
* docs updates * prettify SQL * add missing copyright * cursor_to_dict * update touched files copyright years Signed-off-by: Jason Robinson <jasonr@matrix.org>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/admin_api/rooms.md | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/docs/admin_api/rooms.md b/docs/admin_api/rooms.md index 1d59bb5c4b..86daa393a7 100644 --- a/docs/admin_api/rooms.md +++ b/docs/admin_api/rooms.md @@ -516,11 +516,8 @@ optionally be specified, e.g.: # Forward Extremities Admin API Enables querying and deleting forward extremities from rooms. When a lot of forward -extremities accumulate in a room, performance can become degraded. - -When using this API endpoint to delete any extra forward extremities for a room, -the server does not need to be restarted as the relevant caches will be cleared -in the API call. +extremities accumulate in a room, performance can become degraded. For details, see +[#1760](https://github.com/matrix-org/synapse/issues/1760). ## Check for forward extremities @@ -537,7 +534,7 @@ A response as follows will be returned: "count": 1, "results": [ { - "event_id": "$M5SP266vsnxctfwFgFLNceaCo3ujhRtg_NiiHabcdfgh", + "event_id": "$M5SP266vsnxctfwFgFLNceaCo3ujhRtg_NiiHabcdefgh", "state_group": 439 } ] @@ -561,6 +558,3 @@ that were deleted. "deleted": 1 } ``` - -The cache `get_latest_event_ids_in_room` will be invalidated, if any forward extremities -were deleted. |