summary refs log tree commit diff
path: root/docs/development/room-dag-concepts.md
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2024-08-08 11:27:23 +0100
committerErik Johnston <erik@matrix.org>2024-08-08 11:27:23 +0100
commit46c66aa8e79f67d86091ca809f48b36989fb06e5 (patch)
tree00eaf8c52093423267047b35d610c0fb42c02f66 /docs/development/room-dag-concepts.md
parentMerge remote-tracking branch 'origin/release-v1.113' into matrix-org-hotfixes (diff)
parentSSS: Implement PREVIOUSLY room tracking (#17535) (diff)
downloadsynapse-github/matrix-org-hotfixes.tar.xz
Merge remote-tracking branch 'origin/develop' into matrix-org-hotfixes github/matrix-org-hotfixes matrix-org-hotfixes
Diffstat (limited to 'docs/development/room-dag-concepts.md')
-rw-r--r--docs/development/room-dag-concepts.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/development/room-dag-concepts.md b/docs/development/room-dag-concepts.md

index 76709487f8..35b667831c 100644 --- a/docs/development/room-dag-concepts.md +++ b/docs/development/room-dag-concepts.md
@@ -21,8 +21,10 @@ incrementing integer, but backfilled events start with `stream_ordering=-1` and --- - - `/sync` returns things in the order they arrive at the server (`stream_ordering`). - - `/messages` (and `/backfill` in the federation API) return them in the order determined by the event graph `(topological_ordering, stream_ordering)`. + - Incremental `/sync?since=xxx` returns things in the order they arrive at the server + (`stream_ordering`). + - Initial `/sync`, `/messages` (and `/backfill` in the federation API) return them in + the order determined by the event graph `(topological_ordering, stream_ordering)`. The general idea is that, if you're following a room in real-time (i.e. `/sync`), you probably want to see the messages as they arrive at your server,