Patterns
Examples
Production-ready patterns showing delta-state algebra in real workloads.
⇄
Distributed Cache
Multi-node cache synchronization without consensus. Nodes broadcast XOR deltas — no leader election, no write-ahead log, no ordering constraints.
examples/distributed_cache.py⬡
IoT Sensor Fusion
Hundreds of sensors report 8-byte XOR deltas instead of full state. Gateway merges in any order. Lost packets self-cancel via self-inverse property.
examples/iot_sensor_fusion.py∷
Real-Time Analytics
Track metrics across hundreds of dimensions. XOR-accumulate deltas per dimension, read any time. No database writes, no event logs.
examples/realtime_analytics.pyReady to Build?
Start with the Python SDK. Scale to kernel-level. Deploy on FPGA.