cache-mod 0.9.0

High-performance in-process caching with multiple eviction policies (LRU, LFU, TinyLFU, TTL, size-bounded). Async-safe, lock-minimized internals. Typed key-value API. No dependency on any external store.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# REPS - Rust Efficiency & Performance Standards

> SUPREME AUTHORITY for this repository.

This is a placeholder. Copy the canonical REPS.md from fsys-rs or error-forge before writing implementation code.

REPS defines:
- Zero-allocation hot path discipline
- Lock-free design where contention matters
- unsafe policy (measured and documented only)
- Forbidden patterns (unwrap, expect, todo, unimplemented, print_stdout, print_stderr, dbg)
- Documentation completeness requirements
- Benchmark discipline
- Cross-platform behavior expectations