blob: 3691e20f719657d2fb1ea8acabb70625f5fd8c71 (
plain)
1
2
3
4
5
6
7
|
Fully asynchronous C implementation of the Raft consensus protocol.
The library has modular design: its core part implements only the
core Raft algorithm logic, in a fully platform independent way.
On top of that, a pluggable interface defines the I/O implementation
for networking (send/receive RPC messages) and disk persistence
(store log entries and snapshots).
|