Crate turbo_persistence

Source

Structs§

ArcSlice
A owned slice that is backed by an Arc.
CompactConfig
Configuration for the compaction algorithm.
MetaFileEntryInfo
MetaFileInfo
TurboPersistence
TurboPersistence is a persistent key-value store. It is limited to a single writer at a time using a single write batch. It allows for concurrent reads.
WriteBatch
A write batch.

Enums§

ValueBuffer

Traits§

KeyBase
A trait for keys that can be used for hashing.
QueryKey
A trait for keys that can be used to query the database. They need to allow hashing and comparison with a byte slice (total order).
StoreKey
A trait for keys that can be stored in the database. They need to allow hashing and comparison.