Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 964 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 964 Bytes

raft

License GoDoc Go Report Card Build Status codecov.io

Package raft implements Raft Concensus Algorithm as described in https://raft.github.io/raft.pdf.

Features implemented:

  • Leader Election
  • Log Replication
  • Membership Changes
  • Log Compaction
  • raftctl command line tool to inspect and modify cluster

see example/kvstore for usage