Module async_skipdb::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§
- A optimistic concurrency control transaction over the
SerializableDb. - A concurrent MVCC in-memory key-value database.
- A serializable snapshot isolation transaction over the
SerializableDb.
Traits§
- Things that are fast to clone in the context of an application such as Graph Node
Type Aliases§
- AsyncStdSerializableDb
async-stdDatabase forasync-stdruntime. - Database for
smolruntime. - TokioSerializableDb
tokioDatabase fortokioruntime.