#slab #vec #map #allocator #key-value

slabmap

HashMap-like collection that automatically determines the key

3 unstable releases

0.2.0 Aug 19, 2023
0.1.1 Jul 1, 2020
0.1.0 Jul 1, 2020

#747 in Data structures

Download history 11/week @ 2023-12-14 15/week @ 2023-12-21 11/week @ 2023-12-28 13/week @ 2024-01-04 16/week @ 2024-01-11 11/week @ 2024-01-18 16/week @ 2024-01-25 22/week @ 2024-02-01 34/week @ 2024-02-08 54/week @ 2024-02-15 73/week @ 2024-02-22 60/week @ 2024-02-29 57/week @ 2024-03-07 45/week @ 2024-03-14 43/week @ 2024-03-21 57/week @ 2024-03-28

212 downloads per month
Used in 3 crates (2 directly)

MIT/Apache

28KB
497 lines

slabmap

Crates.io Docs.rs Actions Status

This crate provides the type SlabMap. SlabMap is HashMap-like collection that automatically determines the key.

Install

Add this to your Cargo.toml:

[dependencies]
slabmap = "0.2.0"

Examples

use slabmap::SlabMap;

let mut s = SlabMap::new();
let key_a = s.insert("aaa");
let key_b = s.insert("bbb");

assert_eq!(s[key_a], "aaa");
assert_eq!(s[key_b], "bbb");

for (key, value) in &s {
    println!("{} -> {}", key, value);
}

assert_eq!(s.remove(key_a), Some("aaa"));
assert_eq!(s.remove(key_a), None);

The difference between SlabMap and HashMap

  • SlabMap can only use usize as a key.
  • The key of SlabMap is determined automatically.
  • SlabMap runs faster than HashMap.

The difference between SlabMap and Slab

Carl Lerche's slab crate provides a slab implementation with a similar API.

For both Slab and SlabMap, after adding many elements to the collection, removing many element will reduce iterate performance.

However, unlike Slab, SlabMap can improve iterate performance by calling SlabMap::optimize().

Performance

The following chart shows the difference in performance between BTreeMap, HashMap, Slab(version 0.4.2), SlabMap(version 0.1.0) and, Vec,

Insert

insert performance

Remove random elements

remove random elements performance

Random access

random access performance

Sequential access

sequential access performance

Sequential access after removing elements from a 10,000-element collection

  • x-axis : number of remaining elements
  • y-axis : average time (lower is better)

Sequential access after remove many elements performance

License

This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

No runtime deps