Create a new in-memory key-value store.
Port of MemoryKv::new() from server/memory_kv.rs lines 29-33.
Store an envelope at the given ARID.
Port of KvStore::put() implementation from server/memory_kv.rs lines 62-102.
OptionalttlSeconds: numberOptionalverbose: booleanRetrieve an envelope for the given ARID.
Port of KvStore::get() implementation from server/memory_kv.rs lines 104-181.
OptionaltimeoutSeconds: numberOptionalverbose: booleanCheck if an envelope exists at the given ARID.
Port of KvStore::exists() implementation from server/memory_kv.rs lines 183-186.
In-memory key-value store for Gordian Envelopes.
Provides volatile storage with TTL support and automatic cleanup of expired entries.
Port of
struct MemoryKvfrom server/memory_kv.rs lines 14-21.Example