Registry / utility / dashmap

dashmap

JSON →
library6.2.1rscratesunverified

Blazing fast concurrent HashMap for Rust.

utility
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

use dashmap::DashMap;

Insert and retrieve a value from a concurrent hash map.

use dashmap::DashMap; fn main() { let map = DashMap::new(); map.insert("key", 42); if let Some(val) = map.get("key") { println!("Value: {}", *val); } }
Debug
Known footguns
gotchaDashMap uses internal sharding; iterating while modifying can cause deadlocks.
Upgrade
Version history

Breaking-change detection hasn't run for this library yet.

Audit
Security & dependencies

CVE tracking and dependency tree are planned for a later release.

Agent activity
12 hits · last 30 days
gptbot
3
claudebot
3
ahrefsbot
1
Resources