Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 372 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 372 Bytes

🌊 Raft

Simple implementation of the Raft distributed consensus algorithm in Go.

Paper : https://raft.github.io/raft.pdf

Todo

  • Leader elections
  • Commands/Log replication
  • Persistence
  • Membership Changes
  • Log Compaction

K-v Implementation

Planning to implement a distributed key-value store using the raft consensus algorithm