Crate async_skipdb

source ·
Expand description

Blazing fast ACID and MVCC in memory database.

async-skipdb uses the same SSI (Serializable Snapshot Isolation) transaction model used in badger.

Modules§

  • OptimisticDb implementation, which requires K implements both Hash and Ord. If your K does not implement Hash, you can use [SerializableDb] instead.
  • 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§

Traits§

  • A spawner trait for spawning futures.
  • Detaches the task related to the join handle to let it keep running in the background.

Type Aliases§