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
11
/// Core storage engine implementations for Celerix Store.
/// 
/// This module contains the in-memory store, filesystem persistence, and security primitives.
pub mod memstore;
/// Filesystem persistence logic.
pub mod persistence;
/// Cryptographic utilities for client-side encryption.
pub mod vault;

pub use memstore::MemStore;
pub use persistence::Persistence;