Skip to main content

Module memory

Module memory 

Source
Expand description

The in-process store (RFC 0025 §4.3) — store.kind: memory. Keeps per-key history (so get(key, seq) works like a history-keeping server), enforces the seq CAS, supports list/delete, and offers fault injection for tests: fail the next N operations, add latency, or refuse a specific key. Not durable across the process (dev/test only — the loader warns).

Structs§

MemoryStore