Expand description
Concurrent map abstraction that provides a unified API across native and WASM targets.
On native platforms, this wraps DashMap for high-performance concurrent access.
On WASM platforms, this wraps Arc<RwLock<HashMap>> to provide similar semantics.
Structsยง
- Map
- A concurrent map that provides a unified API across native and WASM targets.