Hacker News new | ask | show | jobs
by viraptor 828 days ago
CRDTs are cool for tiny concurrent edits. For example two people typing on one line. But it doesn't save you when you get large conflicting edits. No system can automatically merge instance A removing a sentence and instance B adding some words within the that sentence. It's still the user that will have to make a decision. And at that point, you're effectively looking at a git style 3-way merge.