starshard 2.0.0

A blazing-fast sharded concurrent HashMap using hashbrown and RwLock, with lazy shards, atomic length cache, async support, conditional operations, batch operations, TTL/metrics/transactions.
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

mod sync_serde;

#[cfg(feature = "async")]
mod async_snapshot;

#[cfg(all(feature = "async", feature = "serde"))]
pub use async_snapshot::AsyncShardedHashMapSnapshot;