Concurrent ART (adaptive radix tree)

con-art-rust Crates.io

A Rust implementation of ART-OLC concurrent adaptive radix tree. It implements the optimistic lock coupling with proper SIMD support.

The code is based on its C++ implementation, with many bug fixes.

It only support (and optimized for) 8 byte key; due to this specialization, this ART has great performance -- basic operations are only 20% slower than flurry hash table, range scan is an order of magnitude faster, of course :)

The code is extensively tested with {address|leak} sanitizer as well as libfuzzer (use BTreeMap as oracle).

Why this library?

TODO: