dbutils 0.14.2

Utils for developing databases
Documentation

Utilities for developing databases.

Installation

  • Default

    [dependencies]
    dbutils = "0.12"
    
  • Using in no_std

    [dependencies]
    dbutils = { version = "0.12", default-features = false }
    
  • Using with alloc only

    [dependencies]
    dbutils = { version = "0.12", default-features = false, features = ["alloc"] }
    

Project Dependents

  • rarena-allocator: Lock-free ARENA allocator which can be used in both memory and on-disk.
  • orderwal: A generic-purpose, atomic, ordered, zero-copy, Write-Ahead Log implementation for Rust.
  • skl: A lock-free thread-safe concurrent ARENA based (heap backend or memory map backend) skiplist implementation which helps develop MVCC memtable for LSM-Tree.
  • valog: A lock-free, generic, lightweight value log for WiscKey or Bitcask architecture databases.

License