solidb 1.0.1

A lightweight, high-performance structured database server written in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod config;
pub mod hlc;
pub mod websocket_client;

// Cluster management
pub mod health;
pub mod manager;
pub mod node;
pub mod state;
pub mod stats;
pub mod stats_gate;
pub mod transport;

pub use config::ClusterConfig;
pub use hlc::HybridLogicalClock;
pub use websocket_client::ClusterWebsocketClient;