rockraft 0.1.6

A strong consistency KV service library base on Raft and Rocksdb
Documentation
1
2
3
4
5
6
7
8
9
//! Connection pooling for Raft inter-node communication.
//!
//! Provides a connection pool using `mobc` for efficient reuse of
//! gRPC connections between Raft cluster nodes.

mod client_pool;
mod manager;

pub use client_pool::ClientPool;