artful 0.1.1

Low-memory overhead and high-performance adaptive radix tree
Documentation
  • Coverage
  • 72.73%
    8 out of 11 items documented3 out of 9 items with examples
  • Size
  • Source code size: 6.31 MB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.64 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pidb alloctor

Artful

Artful is an adaptive radix tree library for Rust. At a high-level, it's like a BTreeMap. It is based on the implementation of paper, see The Adaptive Radix Tree: ARTful indexing for Main-Memory Databases for more information.

Artful is available on crates.io, and API Documentation is available on docs.rs.

Features

  • API similar to a BTreeMap<K,V>
  • Support SIMD instructions operations

Using Artful

Artful is available on crates.io The recommended way to use it is to add a line into your Cargo.toml such as:

[dependencies]
artful = "0.1.1"

Contribution