Module serializable

Source
Expand description

SerializableDb implementation, which requires K implements Ord and CheapClone. If your K implements both Hash and Ord, you are recommended to use OptimisticDb instead.

Structs§

OptimisticTransaction
A optimistic concurrency control transaction over the SerializableDb.
SerializableDb
A concurrent MVCC in-memory key-value database.
SerializableTransaction
A serializable snapshot isolation transaction over the SerializableDb.

Traits§

CheapClone
Things that are fast to clone in the context of an application.

Type Aliases§

AsyncStdSerializableDbasync-std
Database for async-std runtime.
SmolSerializableDbsmol
Database for smol runtime.
TokioSerializableDbtokio
Database for tokio runtime.