hippmem-store 0.1.0

Storage and indexing for HIPPMEM — redb persistence, full-text index (Tantivy), vector index, graph store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! HIPPMEM · Storage and indexing layer
//!
//! Provides the `Store` trait and its redb implementation, managing:
//! - Memory log (`memory_log`) and KV (`memory_kv`)
//! - Inverted indexes (entity/topic/goal/event/temporal)
//! - Association graph, summary, correction overlay
//! - Activation log and consolidation queue
//!
//! Corresponds to 04 §5 storage layout, ADR-001 (redb).

pub mod activation_log;
pub mod fulltext;
pub mod graph;
pub mod kv;
pub mod memory_log;
pub mod semantic;
pub mod store;