velocityx 0.4.1

A production-ready Rust crate for lock-free concurrent data structures with performance monitoring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Map implementations
//!
//! This module provides concurrent map implementations optimized for different access patterns.
//!
//! ## Available Maps
//!
//! - [`ConcurrentHashMap`]: Lock-free reads with concurrent modifications
//!
//! ## Choosing a Map
//!
//! - Use `ConcurrentHashMap` for general-purpose concurrent key-value storage
//! - Consider read/write ratios when tuning performance
//! - Monitor contention levels for optimization opportunities

pub mod concurrent;

#[cfg(feature = "std")]
pub use self::concurrent::ConcurrentHashMap;