-
Notifications
You must be signed in to change notification settings - Fork 52
Open
Labels
Description
If it is not a big problem, I would have a small question about the CRDT of the editor: How did you solve attribute update conflicts?
Scenario:
- User A and user B both offline.
- User A makes atom X bold.
- User B makes atom X bold.
- User B makes atom X non-bold.
- User A and user B both go online.
- User A have to following operations for atom X: (bold) + (bold + not-bold) => (not-bold)
- User B have to following operations for atom X: (bold + not-bold) + (bold) => (bold)
- User A and user B have a different version of atom X after they have received every operation.
Reactions are currently unavailable