summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorErik Johnston <erikj@element.io>2024-07-29 22:45:48 +0100
committerGitHub <noreply@github.com>2024-07-29 22:45:48 +0100
commitbe4a16ff445c9dfba04aeaed695afb3a56e204f7 (patch)
tree62de0ad9059e727a072ea06743afbf21765991ae /changelog.d
parentRefactor Sliding Sync tests to better utilize the `SlidingSyncBase.do_sync(..... (diff)
downloadsynapse-be4a16ff445c9dfba04aeaed695afb3a56e204f7.tar.xz
Sliding Sync: Track whether we have sent rooms down to clients (#17447)
The basic idea is that we introduce a new token for a sliding sync
connection, which stores the mapping of room to room "status" (i.e. have
we sent the room down?). This token allows us to handle duplicate
requests properly. In future it can be used to store more
"per-connection" information safely.

In future this should be migrated into the DB, so its important that we
try to reduce the number of syncs where we need to update the
per-connection information. In this PoC this only happens when we: a)
send down a set of room for the first time, or b) we have previously
sent down a room and there are updates but we are not sending the room
down the sync (due to not falling in a list range)

Co-authored-by: Eric Eastwood <eric.eastwood@beta.gouv.fr>
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/17447.feature1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/17447.feature b/changelog.d/17447.feature
new file mode 100644
index 0000000000..6f80e298ae
--- /dev/null
+++ b/changelog.d/17447.feature
@@ -0,0 +1 @@
+Track which rooms have been sent to clients in the experimental [MSC3575](https://github.com/matrix-org/matrix-spec-proposals/pull/3575) Sliding Sync `/sync` endpoint.