Module optimistic

Source
Expand description

OptimisticDb implementation, which requires K implements both Hash and Ord. If your K does not implement Hash, you can use [SerializableDb] instead.

Structs§

OptimisticDb
A concurrent MVCC in-memory key-value database.
OptimisticTransaction
A optimistic concurrency control transaction over the OptimisticDb.

Type Aliases§

AsyncStdOptimisticDbasync-std
Database for async-std runtime.
SmolOptimisticDbsmol
Database for smol runtime.
TokioOptimisticDbtokio
Database for tokio runtime.