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-stdruntime. - Smol
Serializable Db smol - Database for
smolruntime. - Tokio
Serializable Db tokio - Database for
tokioruntime.