nt-memory 1.0.0

Hierarchical memory system for Neural Trader - ReasoningBank-compatible with L1/L2/L3 caching
Documentation
1
2
3
4
5
6
7
8
9
10
//! L1 Hot Cache - Sub-microsecond lookup with DashMap
//!
//! Performance targets:
//! - Lookup: <1μs (p99)
//! - Insert: <2μs (p99)
//! - Thread-safe without locks (lock-free)

pub mod hot;

pub use hot::{HotCache, CacheConfig, CacheEntry};