Skip to main content

hippmem_store/
lib.rs

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