NonBlocking 2.1.2
dotnet add package NonBlocking --version 2.1.2
NuGet\Install-Package NonBlocking -Version 2.1.2
<PackageReference Include="NonBlocking" Version="2.1.2" />
paket add NonBlocking --version 2.1.2
#r "nuget: NonBlocking, 2.1.2"
// Install NonBlocking as a Cake Addin #addin nuget:?package=NonBlocking&version=2.1.2 // Install NonBlocking as a Cake Tool #tool nuget:?package=NonBlocking&version=2.1.2
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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Runtime.CompilerServices.Unsafe (>= 4.3.0)
-
.NETStandard 2.1
- System.Runtime.CompilerServices.Unsafe (>= 4.3.0)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on NonBlocking:
Package | Downloads |
---|---|
Moq.AutoMock
An auto-mocking container that generates mocks using Moq |
|
FunFair.Test.Common
FunFair Common Test Infrastructure for building xUnit tests on top of. |
|
Credfeto.Package
Scriptable update package tool |
|
Credfeto.DotNet.Repo.Tracking
Dotnet Repository Update tools |
|
FastCache.Cached
The fastest cache library written in C# for items with set expiration time. Easy to use, thread-safe and light on memory. Optimized to scale from dozens to millions of items. Features lock-free reads and writes, allocation-free reads and automatic eviction. Credit to Vladimir Sadov for his implementation of NonBlocking.ConcurrentDictionary which is used as an underlying store. |
GitHub repositories (3)
Showing the top 3 popular GitHub repositories that depend on NonBlocking:
Repository | Stars |
---|---|
NethermindEth/nethermind
A robust execution client for Ethereum node operators.
|
|
moq/Moq.AutoMocker
An auto-mocking IoC container for Moq
|
|
aykutalparslan/Ferrite
Experimental Telegram Server
|
Version | Downloads | Last updated |
---|---|---|
2.1.2 | 585,667 | 7/8/2023 |
2.1.1 | 4,696,019 | 12/27/2022 |
2.1.0 | 100,609 | 6/24/2022 |
2.0.0 | 43,814 | 3/17/2022 |
1.1.2 | 128,973 | 5/21/2020 |
1.1.1 | 11,244 | 5/14/2020 |
1.1.0 | 729 | 5/7/2020 |
1.0.3 | 15,941 | 2/13/2019 |
1.0.2 | 659,135 | 1/20/2018 |
1.0.0 | 1,446 | 7/20/2017 |
1.0.0-rc7 | 974 | 7/14/2017 |
1.0.0-rc6 | 1,352 | 5/19/2017 |
1.0.0-rc5 | 1,182 | 5/19/2017 |
1.0.0-rc4 | 1,296 | 5/10/2017 |
A few bug fixes and performance improvements.