xz-memory-core 0.2.0

Core abstractions for the xz-memory storage engine: EntryStore, IndexSearcher, and shared types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]
#![forbid(unsafe_code)]

//! xz-memory-core: Pure storage abstraction layer.
//!
//! Defines the foundational traits for partitioned entry storage and
//! index-based search. Contains zero business logic or domain concepts.

pub mod error;
pub mod traits;
pub mod types;

pub use error::StoreError;
pub use traits::search::IndexSearcher;
pub use traits::store::EntryStore;
pub use types::entry::{Entry, QueryOptions, ScoredEntry, SearchOptions, SortOrder, TimeRange};