📝Causal Tree

tags

CRDT

Causal Tree is a Pure Operation-Based CRDT algorithm.

The idea is to have all operation be a tuple of:

  • lamport timestamp (for sorting)

  • site-id (to tie-break conflicts, when lamport timestamp is the same)

  • cause — an id of the node that “caused” this operation.

  • operation itself

Resources:

Projects

Backlinks