Skip to content

gentlecolts/mbarc-map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mbarc-map

Minimally-blocking, Atomic Reference Counted Map

Crates.io MIT licensed

API Docs

The motivation of the map implemented in this crate is to provide a map that is better suited towards concurrent use. This crate attempts to solve two problems:

  • Need to be able to refer to map elements without keeping the map itself locked
  • Data stored within the map should be stored in a way that is as cache-friendly as possible for efficient iteration

Individually, these aren't huge asks, but achieving both of these properties while satisfying rust ended up being complex enough to be worth wrapping, thus leading to the creation of MbarcMap. You can kind of think of MbarcMap<T,U> as a shorthand for: Mutex<HashMap<T,Arc<Mutex<U>>>>, however there's more to it than that, especially in regards to pointer safety (stored values are never moved), memory layout (data is stored in continuous blocks), and iterators (safe to alter the map while iterating over it)

About

Non-blocking, Atomic Reference Counted Map

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages