By 2026, Conflict-free Replicated Data Types (CRDTs) have moved beyond simple counters to support complex, hierarchical data structures in adversarial, peer-to-peer environments.
The "Holy Grail" of collaborative software was the ability to Move a folder or a subtree without causing data duplication or cycles.
Landmark research in 2024-2025 (implemented in Automerge) solved this using a Cycle-Detection Algorithm.
The json-joy specification emerged as the 2025 standard for high-performance JSON-CRDTs. It uses a Replicated Growable Array (RGA) algorithm to handle nested strings and arrays with minimal "tombstone" overhead (the metadata leftover from deleted items).
BEC is the consistency model for systems that must converge even when some nodes are malicious (Byzantine).
Traditional ACLs require a central server. In BEC, the ACL itself is a CRDT.
External Deep Dive:
— Detailed look at commutative and convergent replication.
— Theoretical foundations of relaxed consistency.
— Foundations of cryptographic verification in BEC.See Also: