Faster.Map
5.0.2
See the version list below for details.
dotnet add package Faster.Map --version 5.0.2
NuGet\Install-Package Faster.Map -Version 5.0.2
<PackageReference Include="Faster.Map" Version="5.0.2" />
paket add Faster.Map --version 5.0.2
#r "nuget: Faster.Map, 5.0.2"
// Install Faster.Map as a Cake Addin #addin nuget:?package=Faster.Map&version=5.0.2 // Install Faster.Map as a Cake Tool #tool nuget:?package=Faster.Map&version=5.0.2
Faster.Map
The goal of Faster is to provide an incredible fast hashmap, faster than the default in .net which is currently the dictionary. During the years we've tried lots of different types of hashmaps for example robinhood hashing or hashmaps using quadratic probing. All of them have beat the dictionary in terms of performance. But since the release of SIMD instructions in dotNetCore we tried a different approach which is well described in https://abseil.io/about/design/swisstables or https://faultlore.com/blah/hashbrown-tldr/
High level concepts of DenseMap to keep in mind:
- open-addressing
- searches in parallel using SIMD
- first come first serve collision resolution
- chunked (SIMD) triangular (quadratic-ish) probing
- tombstones to avoid backshifts
- The default loadfactor is 0.9
- It's mindblowingly fast
- Install nuget package Faster.Map to your project.
dotnet add package Faster.Map
How to use
DenseMap Example
private DenseMap<uint, uint> _map = new DenseMap<uint, uint>(16);
_map.Emplace(1, 50);
_map.Remove(1);
_map.Get(1, out var result);
_map.Update(1, 51);
_map.AddOrUpdate(1, 50);
ref var x = _map.GetOrAdd(1);
Tested on platforms:
- x86
- x64
- arm
- arm64
Benchmark
BenchmarkDotNet v0.13.8, Windows 11 (10.0.22621.2428/22H2/2022Update/SunValley2)
12th Gen Intel Core i5-12500H, 1 CPU, 16 logical and 12 physical cores
.NET SDK 8.0.100-rc.1.23463.5
[Host] : .NET 8.0.0 (8.0.23.41904), X64 RyuJIT AVX2
DefaultJob : .NET 8.0.0 (8.0.23.41904), X64 RyuJIT AVX2
### Retrieving a million random generated keys
| Method | Mean | Error | StdDev | Code Size | Allocated |
|--------------- |----------:|----------:|----------:|----------:|----------:|
| DenseMap | 5.191 ms | 0.0668 ms | 0.0592 ms | 276 B | 6 B |
| SlimDictionary | 9.589 ms | 0.1804 ms | 0.1687 ms | 393 B | 12 B |
| Dictionary | 16.974 ms | 0.7074 ms | 2.0859 ms | 400 B | 12 B |
### Adding a million keys
| Method | Mean | Error | StdDev | Median | Code Size | Allocated |
|--------------- |---------:|---------:|---------:|---------:|----------:|-----------:|
| DenseMap | 12.64 ms | 0.376 ms | 1.108 ms | 13.81 ms | 383 B | 736 B |
| Dictionary | 16.57 ms | 0.454 ms | 1.317 ms | 16.65 ms | 741 B | 736 B |
| DictionarySlim | 22.62 ms | 0.449 ms | 0.876 ms | 22.44 ms | 367 B | 736 B |
### Updating a million keys
| Method | Mean | Error | StdDev |
| DenseMap | 5.271 ms | 0.0498 ms | 0.0416 ms |
| DictionarySlim| 11.188 ms | 0.1745 ms | 0.1457 ms |
### Removing a million keys
| Method | Mean | Error | StdDev |
|--------------- |----------:|----------:|----------:|
| DenseMap | 8.811 ms | 0.1762 ms | 0.4321 ms |
| SlimDictionary | 13.150 ms | 0.2602 ms | 0.6134 ms |
| Dictionary | 17.063 ms | 0.3516 ms | 1.0313 ms |
### Add and resize
| Method | Mean | Error | StdDev | Median |
|--------------- |---------:|---------:|---------:|---------:|
| DenseMap | 14.19 ms | 0.722 ms | 2.119 ms | 14.98 ms |
| Dictionary | 31.30 ms | 0.624 ms | 1.590 ms | 30.98 ms |
| DictionarySlim | 22.63 ms | 0.451 ms | 0.980 ms | 22.55 ms |
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Faster.Map:
Package | Downloads |
---|---|
Faster.Ioc
Package Description |
|
UPSRestApi
UpsRestApi library for .Net used to access UPS API Catalog to browse products and view documentation. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
6.1.1 | 83 | 10/31/2024 |
6.1.0 | 88 | 10/31/2024 |
6.0.4 | 108 | 10/13/2024 |
6.0.3 | 168 | 9/4/2024 |
6.0.2 | 103 | 9/3/2024 |
6.0.1 | 96 | 9/1/2024 |
6.0.0 | 126 | 8/7/2024 |
5.0.4 | 882 | 4/16/2024 |
5.0.3 | 486 | 11/18/2023 |
5.0.2 | 221 | 10/29/2023 |
5.0.1 | 137 | 10/29/2023 |
5.0.0 | 157 | 10/28/2023 |
4.2.1 | 303 | 9/2/2023 |
4.2.0 | 2,196 | 4/24/2023 |
4.1.6 | 242 | 4/24/2023 |
4.1.5 | 348 | 3/19/2023 |
4.1.4 | 338 | 3/14/2023 |
4.1.3 | 298 | 3/14/2023 |
4.1.2 | 269 | 3/14/2023 |
4.1.1 | 860 | 3/10/2023 |
4.1.0 | 300 | 3/9/2023 |
4.0.9 | 293 | 3/9/2023 |
4.0.8 | 290 | 3/9/2023 |
4.0.7 | 313 | 3/6/2023 |
4.0.6 | 341 | 3/3/2023 |
4.0.5 | 325 | 3/1/2023 |
4.0.4 | 407 | 2/24/2023 |
4.0.3 | 362 | 2/23/2023 |
4.0.2 | 1,146 | 1/7/2023 |
4.0.1 | 400 | 1/6/2023 |
4.0.0 | 381 | 1/4/2023 |
3.0.4.2 | 747 | 12/22/2022 |
3.0.3.9 | 1,091 | 12/9/2022 |
3.0.3.8 | 758 | 11/8/2022 |
3.0.3.7 | 520 | 10/27/2022 |
3.0.3.6 | 536 | 10/18/2022 |
3.0.3.5 | 435 | 10/18/2022 |
3.0.3.4 | 1,108 | 9/20/2022 |
3.0.3.3 | 1,259 | 5/19/2022 |
3.0.3.2 | 481 | 5/17/2022 |
3.0.3.1 | 474 | 5/17/2022 |
3.0.3 | 476 | 5/17/2022 |
3.0.2 | 491 | 5/15/2022 |
- made sure h2 targets 7 highbits