You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/glossary.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ These words are used in the Yorkie project and the community. Understanding thes
13
13
| Client | An regular client that communicates with the Yorkie server, synchronizing document changes for real-time collaboration. |
14
14
| Server | The central component that manages documents and channels, stores changes, and facilitates communication between clients. |
15
15
| Project | A logical grouping of documents, channels, and clients, allowing multiple independent services within a single Yorkie installation. |
16
-
| Document | The primary data structure in Yorkie for persistent, collaborative data. It contains a presence and a root, and is stored in the database. Documents support offline editing and conflict-free synchronization using CRDTs. For more details, see [Document Concept](/docs/concepts/document). |
17
-
| Channel | A lightweight, memory-only communication layer for real-time features like presence tracking and message broadcasting. Unlike Documents, Channels do not persist data to the database and are designed for ephemeral data. For more details, see [Channel Concept](/docs/concepts/channel). |
16
+
| Document | The primary data structure in Yorkie for persistent, collaborative data. It contains a presence and a root, and is stored in the database. Documents support offline editing and conflict-free synchronization using CRDTs. |
17
+
| Channel | A lightweight, memory-only communication layer for real-time features like presence tracking and message broadcasting. Unlike Documents, Channels do not persist data to the database and are designed for ephemeral data. |
18
18
| Presence | A data structure representing a user's current state within a document (e.g., cursor position, selection). |
19
19
| Root | The main JSON-like data structure(CRDT) within a document that can be shared and edited by multiple users. |
20
20
| Change | A representation of modifications made to a document, created by calling `Document.Update()`. |
0 commit comments