Skip to main content

Module storage

Module storage 

Source

Structs§

OverlayDelta
Captured overlay state for atomic replay onto a target storage.
OverlayStorage
Thread-safe overlay storage that wraps a base storage. All writes go to an in-memory HashMap overlay. Reads check overlay first, then fall through to base. Deletes are tracked as tombstones in the overlay.
SqliteStorage
StorageFifoMap
StorageHashMap
A hash map implemented with quadratic probing and SIMD lookup.

Enums§

QueryExecuteError
StorageError

Traits§

OverlayLike
Trait implemented by OverlayStorage<K, V> to expose its buffered writes/deletes so that a caller (e.g. atomic bundle commit) can drain them back onto a target storage.
Storage
StorageConstructor

Functions§

new_kv_store
new_kv_store_with_default

Type Aliases§

StorageResult