Benchmarks for concurrent hash map implementations in Go
Summary
The repository benchmarks multiple concurrent hash map implementations in Go, including stdlib sync.Map, xsync.Map, and several third-party maps. It analyzes performance across varied workloads, key types, and map sizes, highlighting trade-offs in contention, allocations, and scalability and offering guidance on when to choose each implementation based on workload characteristics.