As an aside, I find FugueMax to be amazing to solve interleaving issues.
I've found for collaborative editing fuguemax for resolving intraline edits and h-lseq for the lines themselves has been amazing.
It is slow and inefficient, but can be done.
Still working on good blog posts to explain and introduce it though.
I dream about this.
cbm-vic-20•3h ago
The article then goes into some examples of CRDTs and their merge operation, and the examples are pretty straightforward: take the maximum of two values, or take one with a more recent timestamp, etc.
But what about the motivating example? What should a merge function do with the inputs "change the third word from 'affect' to 'effect'" and "delete the third word"? In other words, how does the function know which of these operations "wins"? It could ask a user for a manual resolution, but is there a reasonable way for a function to make this determination itself? Maybe deletes are more powerful than word changes, so the delete wins.
swid•3h ago
scotty79•3h ago
For words, if a word is a single unit in your system, delete obviously beats amendment.
ffsm8•2h ago
Hmm, last update as it's received by a central server? Last update according to the time on the device doing committing the update? The rabbit hole just keeps going, for each decision you get multiple new edge cases with unintended behavior...
bux93•2h ago
gregoriol•2h ago
ffsm8•12m ago
And all but the last one fundamentally have lots of edge cases with e.g. high-latency sync
heromal•2h ago
SkiFire13•46m ago
fellowniusmonk•2h ago
And there are different algos, for diamondtypes:
Once a character is seen by clients any delete of it wins, algos like diamond types reconstruct each clients stream.
So in the case of DT, effect is absolutely gone, two clients deleting the e and one client deleted the ffects, and they both started at the same causal slice, but the A is a good question. You might just end up with an A.
In the case of multiple inserts in the same position dt uses the client ids lexical sort for ordering to reduce text interleaving.
Other crdt approaches may be positional or last write wins, in which case you may end up with nothing.
Besides being an amazing project loro crdts documentation and blog covers a lot of this stuff and names the specific algos they use.
jongjong•2h ago
This is why I like using granular data structures where each value can be updated in an all-or-nothing manner and if one person's change overwrites another, the person whose change was overwritten will just assume that the other person made an update shortly after and the amount overwritten is minimal.
staplung•2h ago
That tradeoff is fine for some things but not others. There's a reason why git et al require human intervention for merge conflicts.
The article is doing a classic bait-and-switch: start with a motivating example then dodge the original question without pointing out that CRDTs may be a very bad choice for collaborative editing. E.g. maybe it's bad for code and legalese but fine for company-issued blog posts.
aaronblohowiak•1h ago
dkarl•48m ago
If you have worked on problems like this, you're very happy to converge on the same state and have no expectation that multiple concurrent editors will be happy with the result. Or even that one of them will be happy with the result.
You wouldn't use this in a situation like version control where you have to certify a state as being acceptable to one or multiple users.