Skip to content

rustcc/concurrent_adaptive_radix_tree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Concurrent Adaptive Radix Tree

Simd+concurrent implementation of adaptive radix tree.

SIMD is using rust std's portable SIMD, which is currently only available on nightly, and adopts to any instruction sets that LLVM simd supports.

use concurrent_adaptive_radix_tree::ARTMap;

let mut map = ARTMap::new();
map.insert("foo", 1);
map.insert("bar", 2);
map.insert("baz", 3);
assert_eq!(map.len(), 3);

assert_eq!(map.get("foo"), Some(&1));
assert_eq!(map.get("bar"), Some(&2));
assert_eq!(map.get("baz"), Some(&3));

About

Applies the fastest ART with concurrency and SIMD

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages