https://github.com/tugraph-family/etcd-raft-cpp
The C++ implementation of etcd raft
https://github.com/tugraph-family/etcd-raft-cpp
cpp etcd raft
Last synced: about 2 months ago
JSON representation
The C++ implementation of etcd raft
- Host: GitHub
- URL: https://github.com/tugraph-family/etcd-raft-cpp
- Owner: TuGraph-family
- License: apache-2.0
- Created: 2025-02-08T02:55:08.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-03T11:59:18.000Z (about 1 year ago)
- Last Synced: 2025-07-01T08:42:06.086Z (9 months ago)
- Topics: cpp, etcd, raft
- Language: C++
- Homepage:
- Size: 178 KB
- Stars: 15
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Introduction
This project is a c++ port of etcd raft, based on a commit point in the original repository (https://github.com/etcd-io/raft), the commit id is in the `commit` file.
## Features
* Almost line-by-line translation of the etcd golang raft code.
* Header-only, all the code is in the header file and does not need to be compiled into a lib.
* Most of the test case code was translated and the test passed.