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§
- Optimistic
Transaction - A optimistic concurrency control transaction over the
SerializableDb
. - Serializable
Db - A concurrent MVCC in-memory key-value database.
- Serializable
Transaction - A serializable snapshot isolation transaction over the
SerializableDb
.
Traits§
- Cheap
Clone - Things that are fast to clone in the context of an application.
Type Aliases§
- Async
StdSerializable Db async-std
- Database for
async-std
runtime. - Smol
Serializable Db smol
- Database for
smol
runtime. - Tokio
Serializable Db tokio
- Database for
tokio
runtime.