reddb-io-server 1.9.1

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Vector B-tree storage support modules.
//!
//! - `value_codec` (slice A) — self-contained LZ4 codec used by the
//!   B-tree large-value path to decide whether a payload is worth
//!   compressing before considering an overflow spill.
//! - `page_format` (slice C) — on-disk page format v2: adds
//!   `PageType::Overflow`, two flag bits on every leaf cell, and a
//!   format-version bump with v1 backward-read compatibility.
//!
//! Subsequent slices will wire these modules into the engine's
//! overflow chain, page integration, and MVCC glue.

pub mod page_format;
pub mod value_codec;