NonBlocking NuGet Package

Implementation of a lock-free dictionary on .Net

Included types:
=== NonBlocking.ConcurrentDictionary
Lock-free, wait-free implementation of a dictionary.
- has the same API as System.Collections.Concurrent.ConcurrentDictionary.
- No locks are taken during any operation including Get, Add, Remove, internal resizes etc...
- While multiple threads accessing NonBlocking dictionary will help each other in operations such as table resizing, there is no dependency on such behavior.

If any thread get unscheduled or delayed for whatever reason, other threads will be able to make progress independently.
- NonBlocking dictionary scales linearly with the number of active threads if hardware permits.

On most operations NonBlocking dictionary is faster than Concurrent, especially in write-heavy scenarios.

Core algorithms are based on NonBlockingHashMap, written and released to the public domain by Dr. Cliff Click.

A good overview could be found here: https://www.youtube.com/watch?v=HJ-719EGIts

=== Counter32
=== Counter64
Low-overhead scalable counters.




Got any NonBlocking Question?





Info

Version: 2.1.2
Author(s): Vladimir Sadov
Last Update: Saturday, July 8, 2023
.NET Fiddle: Create the first Fiddle
Project Url: https://github.com/VSadov/NonBlocking
NuGet Url: https://www.nuget.org/packages/NonBlocking


Install
Install-Package NonBlocking
dotnet add package NonBlocking
paket add NonBlocking
NonBlocking Download (Unzip the "nupkg" after downloading)



Tags



STATS

must-have-score

1.4

avg-downloads-per-day

490

days-since-last-release

265