#linked-hash-map #hash-map

no-std ritelinked

HashMap-like containers that hold their key-value pairs in a user controllable order

7 releases

0.3.2 Aug 24, 2021
0.3.1 May 27, 2021
0.2.2 Mar 6, 2021
0.1.0 Mar 3, 2021

#780 in Data structures

Download history 4420/week @ 2024-06-19 5089/week @ 2024-06-26 5472/week @ 2024-07-03 5048/week @ 2024-07-10 4658/week @ 2024-07-17 4695/week @ 2024-07-24 5497/week @ 2024-07-31 6448/week @ 2024-08-07 4680/week @ 2024-08-14 5336/week @ 2024-08-21 6401/week @ 2024-08-28 5120/week @ 2024-09-04 3571/week @ 2024-09-11 2835/week @ 2024-09-18 3502/week @ 2024-09-25 3192/week @ 2024-10-02

14,037 downloads per month
Used in 11 crates (8 directly)

MIT/Apache

93KB
2.5K SLoC

RiteLinked -- HashMap-like containers that hold their key-value pairs in a user controllable order

Latest Version API Documentation

RiteLinked provides more up to date versions of LinkedHashMap & LinkedHashSet . You can easily use it on std or no_std environment.

Support some practical feature combinations to help you better embed them in existing code: serde, inline-more etc. Especially, it uses griddle by default, if you have a lot of data, it can effectively help you reduce the possible tail delay. (Of course, hashbrown can also be used)

Usage

Add ritelinked to Cargo.toml:

ritelinked = "x.y.z"

Write some code like this:

let mut lru_cache = LinkedHashMap::new();
let key = "key".to_owned();
let _cached_val = lru_cache
    .raw_entry_mut()
    .from_key(&key)
    .or_insert_with(|| (key.clone(), 42));

Benchmark

ritelinked              time:   [165.09 ns 165.40 ns 165.79 ns]                       
Found 12 outliers among 100 measurements (12.00%)
  5 (5.00%) high mild
  7 (7.00%) high severe

hashlink                time:   [168.11 ns 168.48 ns 168.96 ns]                     
Found 13 outliers among 100 measurements (13.00%)
  2 (2.00%) high mild
  11 (11.00%) high severe

linked-hash-map         time:   [370.98 ns 382.59 ns 397.44 ns]                            
Found 7 outliers among 100 measurements (7.00%)
  7 (7.00%) high mild

Credit

It is a fork of the popular crate hashlink, but more adjustments and improvements have been made to the code .

License

This library is licensed the same as hashlink, it is licensed under either of:

at your option.

Dependencies

~0.7–1.1MB
~18K SLoC