Distributed Systemscs
The field studying how independent nodes coordinate to act as one system — replication, consensus, fault tolerance, and convergence.
CRDT sync is a distributed-systems problem; replicating compiled memory across devices without a server requires convergence guarantees.
Where it appears
- SKCE foundation for crdt-sync
Descend
Historical evolution
From Lamport clocks (1978) to CRDTs (Shapiro 2011); the theory behind server-less convergence.
Implementation details
SKCE sync uses a Lamport clock for causal LWW and a Remove-Wins Set for deletion.
Sources
- [src/sovereign_knowledge_compiler/sync/crdt.py] src/sovereign_knowledge_compiler/sync/crdt.py
- [src/sovereign_knowledge_compiler/sync/crdt.py] src/sovereign_knowledge_compiler/sync/crdt.py