Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chapin666/simple-raft
- Owner: chapin666
- License: apache-2.0
- Created: 2019-10-11T03:47:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-16T01:12:39.000Z (over 3 years ago)
- Last Synced: 2024-06-19T00:36:31.365Z (5 months ago)
- Language: Go
- Size: 17.6 KB
- Stars: 26
- Watchers: 2
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```