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
8
9
10
/// Software Development Kit (SDK) for Celerix Store.
/// 
/// This module provides a high-level API for interacting with the store, including
/// automatic mode discovery and a remote TCP client.
pub mod client;
/// Automatic mode discovery and store initialization.
pub mod discovery;

pub use client::Client;
pub use discovery::new;