ConcurrencyToolkit 0.2.0

dotnet add package ConcurrencyToolkit --version 0.2.0
NuGet\Install-Package ConcurrencyToolkit -Version 0.2.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ConcurrencyToolkit" Version="0.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ConcurrencyToolkit --version 0.2.0
#r "nuget: ConcurrencyToolkit, 0.2.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ConcurrencyToolkit as a Cake Addin
#addin nuget:?package=ConcurrencyToolkit&version=0.2.0

// Install ConcurrencyToolkit as a Cake Tool
#tool nuget:?package=ConcurrencyToolkit&version=0.2.0

ConcurrencyToolkit

Concurrent collections and synchronization primitives for writing fast multithreaded and asynchronous code. This library is experimental and provided without warranty, so use it carefully.

Features

  • lockless semaphores
  • priority semaphore
  • lockless object and array pools
  • memory compact single writer multiple readers hash map
  • memory compact thread safe (but locked) hash map
  • write optimized lock-free counter

Types

ConcurrencyToolkit.Synchronization

  • QueueSemaphore: uses ConcurrentQueue to order waiters
  • StackSemaphore: uses ConcurrentStack to order waiters
  • SimpleSegmentSemaphore: uses segment queue to order waiters (similar to the Semaphore from kotlinx.coroutines)
  • SegmentSemaphore: uses segment queue with support of early removal of cancelled waiters
  • PrioritySemaphore: lock-based semaphore (like SemaphoreSlim), but releases waiters in specified priority

ConcurrencyToolkit.Pooling

  • LocklessArrayPool<T>.Shared: similar to ArrayPool<T>.Shared but uses bounded concurrent queue instead of lock protected arrays to store pooled items.
  • IObjectPool<T>, ObjectPool<T>

ConcurrencyToolkit.Collections

  • SingleWriterDictionary<TKey, TValue, TComparer>: memory-compact hash map that supports single writer and multiple readers simultaneously. Writes are lock-free (except for resizes, which may trigger GC), but reads may be retried when a parallel update occurs.
  • StripedDictionary<TKey, TValue, TComparer>: memory-compact hash map, designed to avoid ConcurrentDictionary GC overhead. It is not general purpose ConcurrentDictionary replacement, and generally is slower, especially for reads.
  • DefaultComparer<TKey>: default comparer for ConcurrencyToolkit hash maps
  • ComparerWrapper<TKey>: struct wrapper over the reference type comparer

ConcurrencyToolkit.Metrics

  • ThreadSafeCounter64: scalable atomic counter that distributes writes across per-core variables

ConcurrencyToolkit.Threading

  • InterlockedFloatingPoint: methods for atomic floating point arithmetics
  • LowLatencySpinWait: SpinWait implementation that achieves low latency (~0.5ms) on sleeps instead of standard 15ms
Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.0 129 4/13/2024
0.1.0 1,251 7/25/2023
0.0.1 160 3/29/2023