dbx-core 0.2.2

High-performance file-based database engine with 5-Tier Hybrid Storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Sharding Module — Hash 기반 수평 분할 MVP
//!
//! # 모듈 구성
//!
//! - [`router::ShardRouter`]: FNV1a 해시 기반 키→샤드 라우팅
//! - [`scatter_gather::ScatterGather`]: 분산 쿼리 실행 (scatter) + 결과 병합 (gather)

pub mod node_ring;
pub mod rebalancer;
pub mod router;
pub mod scatter_gather;

pub use node_ring::NodeRing;
pub use rebalancer::{MigrationTask, Rebalancer, rebalancer_on_add, rebalancer_on_remove};
pub use router::{ShardNode, ShardRouter};
pub use scatter_gather::ScatterGather;