Module cache

Module cache 

Source
Expand description

L1 Hot Cache - Sub-microsecond lookup with DashMap

Performance targets:

  • Lookup: <1μs (p99)
  • Insert: <2μs (p99)
  • Thread-safe without locks (lock-free)

Re-exports§

pub use hot::HotCache;
pub use hot::CacheConfig;
pub use hot::CacheEntry;

Modules§

hot
High-performance hot cache using DashMap