Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chapin666/simple-raft

simple implementation of raft consensus algorithm
https://github.com/chapin666/simple-raft

Last synced: 4 days ago
JSON representation

simple implementation of raft consensus algorithm

Awesome Lists containing this project

README

        

# simple implementation of raft consensus algorithm

---

### TODO
- [x] Leader election
- [x] Log replication

### Branch
- master: Leader election & Log replication
- election:Leader election
- replication:Log replication

### build
```
go build -o simple-raft
```

### run
```
go get go get github.com/mattn/goreman
goreman start
```