Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 818 Bytes

data-structure-conflict-free-replicated-data-type.md

File metadata and controls

17 lines (10 loc) · 818 Bytes

conflict free replicated data type

In distributed computing, a conflict-free replicated data type (CRDT) is a data structure that is replicated across multiple computers in a network, with the following features:

The application can update any replica independently, concurrently and without coordinating with other replicas.
An algorithm (itself part of the data type) automatically resolves any inconsistencies that might occur.
Although replicas may have different state at any particular point in time, they are guaranteed to eventually converge.

wikipedia

Guides

Libraries

  • Yjs - A CRDT framework with a powerful abstraction of shared data.