pub type GrafeoConcurrentMap<K, V> = DashMap<K, V, FxBuildHasher>;Expand description
Concurrent HashMap for multi-threaded access.
Uses fine-grained locking for high concurrent throughput.
Prefer this over Arc<Mutex<HashMap>> for shared mutable state.
Aliased Typeยง
pub struct GrafeoConcurrentMap<K, V> { /* private fields */ }