ConcurrentInt64Map

Type Alias ConcurrentInt64Map 

Source
pub type ConcurrentInt64Map<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 ConcurrentInt64Map<V> { /* private fields */ }