4 releases

0.3.3 Jul 28, 2024
0.3.2 Aug 27, 2023
0.3.1 Mar 20, 2022
0.2.1 Mar 20, 2022
0.1.0 Mar 20, 2022

#68 in Concurrency

Download history 18147/week @ 2024-11-17 15049/week @ 2024-11-24 18489/week @ 2024-12-01 20049/week @ 2024-12-08 26731/week @ 2024-12-15 7697/week @ 2024-12-22 9658/week @ 2024-12-29 18503/week @ 2025-01-05 22877/week @ 2025-01-12 26472/week @ 2025-01-19 28948/week @ 2025-01-26 32553/week @ 2025-02-02 35377/week @ 2025-02-09 31668/week @ 2025-02-16 31822/week @ 2025-02-23 33950/week @ 2025-03-02

134,603 downloads per month
Used in 96 crates (5 directly)

Apache-2.0

21KB
356 lines

memo-map

Build Status Crates.io License rustc 1.41.0 Documentation

A concurrent insert only hash map.

This crate implements a “memo map” which is in many ways similar to a HashMap with some crucial differences:

  • Unlike a regular hash map, a memo map is thread safe and synchronized.
  • Adding or retrieving keys works through a shared reference, removing only through a mutable reference.
  • Retrieving a value from a memo map returns a plain old reference.
use memo_map::MemoMap;

let memo = MemoMap::new();
let one = memo.get_or_insert(&1, || "one".to_string());
let one2 = memo.get_or_insert(&1, || "not one".to_string());
assert_eq!(one, "one");
assert_eq!(one2, "one");

No runtime deps