pub type ConcurrentI64Map<V> = DashMap<i64, V, FxBuildHasher>;Expand description
Concurrent hash map for i64 keys
Uses DashMap with FxHash for fast concurrent access. Provides sharded, lock-free reads and fine-grained locking for writes.
Aliased Typeยง
pub struct ConcurrentI64Map<V> { /* private fields */ }