minikv 0.7.0

A production-grade distributed KV store with Raft consensus in ~1,500 lines
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Volume server implementation
//!
//! Handles blob storage with:
//! - Write-ahead log (WAL) for durability
//! - Segmented append-only storage
//! - Automatic compaction
//! - Bloom filters for fast negative lookups
//! - Index snapshots for fast restarts

pub mod blob;
pub mod compaction;
pub mod grpc;
pub mod http;
pub mod index;
pub mod server;
pub mod wal;

pub use server::VolumeServer;