async-raft
An implementation of the Raft distributed consensus protocol using the Tokio framework.
File Explorer
Download Latest Version (.zip)- ci.yaml
- pages.yaml
- release-memstore.yaml
- release-raft.yaml
- pull_request_template.md
- admin.rs
- append_entries.rs
- client.rs
- install_snapshot.rs
- mod.rs
- replication.rs
- vote.rs
- mod.rs
- config.rs
- error.rs
- lib.rs
- metrics.rs
- network.rs
- raft.rs
- storage.rs
- mod.rs
- client_reads.rs
- client_writes.rs
- compaction.rs
- current_leader.rs
- dynamic_membership.rs
- initialization.rs
- non_voter_restart.rs
- shutdown.rs
- singlenode.rs
- stepdown.rs
- Cargo.toml
- README.md
- raft-overview.png
- cluster-controls.md
- cluster-formation.md
- dynamic-membership.md
- get-to-it.md
- getting-started.md
- metrics.md
- network.md
- overview.md
- putting-it-all-together.md
- raft.md
- storage.md
- SUMMARY.md
- lib.rs
- test.rs
- Cargo.toml
- README.md
- .gitignore
- book.toml
- Cargo.toml
- CHANGELOG.md
- clippy.toml
- CONTRIBUTING.md
- LICENSE-APACHE
- LICENSE-MIT
- raft-essentials.md
- README.md
- rustfmt.toml
# Installation Guide
1. Get the code
git clone https://github.com/async-raft/async-raft
Downloads the entire project code from GitHub to your computer.
cd async-raft
Moves into the project folder you just downloaded.
2. Rust
Medium RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
