Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 718 Bytes

README.md

File metadata and controls

11 lines (7 loc) · 718 Bytes

Raft (consensus algorithm)

This is an implemetation of the raft algorithm in Golang. The skeleton of the project comes from MIT 6.824.

These are useful resources to understand raft:

raft/raft.go contains all of the algorithm. Other files are used for testing purposes. To test raft.go cd to raft directory and type the command go test -run 2A, 2B or 2C. For more information see this link.