Expand description
Blazing fast ACID and MVCC in memory database.
skipdb uses the same SSI (Serializable Snapshot Isolation) transaction model used in badger.
Modules§
- optimistic
OptimisticDbimplementation, which requiresKimplements bothHashandOrd. If yourKdoes not implementHash, you can use [SerializableDb] instead.- serializable
SerializableDbimplementation, which requiresKimplementsOrdandCheapClone. If yourKimplements bothHashandOrd, you are recommended to useOptimisticDbinstead.
Structs§
- Iter
- An iterator over the entries of the database.
- Range
- An iterator over a subset of entries of the database.
- Read
Transaction - A read only transaction over the [
OptimisticDb], - Ref
- A reference to an entry in the write transaction.
- RevIter
- An iterator over the entries of the database.
- Transaction
Iter - Iterator over the entries of the write transaction.
- Transaction
Range - An iterator over a subset of entries of the database.
- Value
Ref - A reference to an entry in the write transaction.
- Write
Transaction RevIter - Iterator over the entries of the write transaction.