celerix-store 0.1.2

A lightweight, low-latency KV data store with 1:1 parity with the orginal golang version, atomic persistence, and AES-256-GCM encryption.
Documentation
1
2
3
4
5
6
7
/// TCP server implementation for the Celerix Store daemon.
/// 
/// This module provides the [`Router`] which handles incoming TCP connections
/// and dispatches commands to the underlying store.
pub mod router;

pub use router::Router;