memorable

Crates.iomemorable
lib.rsmemorable
version
sourcesrc
created_at2024-11-25 15:59:21.908237
updated_at2024-11-25 16:00:46.529068
descriptionLock-free, ordered and multiple version memory table for key-value databases.
homepagehttps://github.com/al8n/memorable
repositoryhttps://github.com/al8n/memorable
max_upload_size
id1460448
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
Al Liu (al8n)

documentation

https://docs.rs/memorable

README

Memorable

Lock-free, ordered and multiple version memory table for key-value databases.

github LoC Build codecov

docs.rs crates.io crates.io license

Features

  • Lock-free, multiple version and no_std compitable
  • Not only limited to point insert and get, but also support range deletions and range updates
  • Flexiable iterators and APIs for users to implement flush logic
  • Two kinds of memtable for different use cases:
    1. Unbounded memtable based on dynamic allocated unbounded skiplist
    2. Fixed-size bounded memtable based on ARENA style skiplist

Installation

[dependencies]
memorable = "0.1"

License

memorable is under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, LICENSE-MIT for details.

Copyright (c) 2024 Al Liu.

Commit count: 4

cargo fmt