CRDT - Conflict Free Replicated Data Types
Background When searching techniques for syncing data between peers, I stumbled upon CRDT (Conflict-free Replicated Data Types). It’s basically a algorithm for syncing for distributed systems. CRDT ensures all data changes between peer will be synced with correct order and no data loss. Since I working with Dart (for Flutter project), I use a CRDT library for Dart. This library implements core concept of CRDT and it’s pretty basic. Here some types of CRDT that often used: ...