Expand description
The append-only memory event log — the recovery and audit backbone.
Everything durable that happens to memory is an event first and a mutation second. A crash mid-session loses the in-process ledger but not the events, so the session overlay can be rebuilt by replay.
Structs§
- Commit
Receipt - The result of applying one memory transaction.
- InMemory
Event Log - An in-process event log, used by tests and single-node deployments.
- Memory
Event Envelope - An event plus the addressing metadata every consumer needs.
- Session
Event Writer - A convenience wrapper that stamps the user and session onto every append.
Enums§
- Memory
Event - A durable fact about something that happened to memory.
Constants§
- EVENT_
SCHEMA_ VERSION - The current event schema version. Bumped whenever
MemoryEventchanges shape in a way replay must account for.
Traits§
- Memory
Event Log - A durable append-only sink for memory events.