concurrent-hash-map

Crates.ioconcurrent-hash-map
lib.rsconcurrent-hash-map
version0.0.6
sourcesrc
created_at2016-03-06 20:48:30.206712
updated_at2016-09-18 14:37:01.506433
descriptionThis is a simple concurrent hash map written in Rust. It uses a design where read operations never lock against reads or writes, but writes can sometimes lock against other writes. In order to maintain concurrency on insert/removal operations, the map is segmented into several sub-maps, each of which has its own write lock. This code is currently extremely pre-alpha. Most particularly, it leaks memory on table growth and drop, as well as when using keys or values that (even transitively) use custom Drop implementations. It should be possible to fix this, but a clean solution will require support for running destructors in crossbeam (see crossbeam issue #13). For now it may be useful for long lived hashmaps with a relatively steady size, but I don't recommend using it for anything important :-).
homepage
repositoryhttps://github.com/AlisdairO/concurrent-hash-map
max_upload_size
id4386
size28,629
Alisdair Owens (AlisdairO)

documentation

http://zaltys.net/rustdoc/doc/concurrent_hash_map/

README

This is a simple concurrent hash map written in Rust. It uses a design where read operations never lock against reads or writes, but writes can sometimes lock against other writes. In order to maintain concurrency on insert/removal operations, the map is segmented into several sub-maps, each of which has its own write lock.

This code is currently extremely pre-alpha. Most particularly, it leaks memory on table growth and drop, as well as when using keys or values that (even transitively) use custom Drop implementations. It should be possible to fix this, but a clean solution will require support for running destructors in crossbeam (see crossbeam issue #13).

For now it may be useful for long lived hashmaps with a relatively steady size, but I don't recommend using it for anything important :-).

Commit count: 25

cargo fmt