Soenneker.Queues.Intrusive.ValueMpsc 4.0.36

Prefix Reserved
dotnet add package Soenneker.Queues.Intrusive.ValueMpsc --version 4.0.36
                    
NuGet\Install-Package Soenneker.Queues.Intrusive.ValueMpsc -Version 4.0.36
                    
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="Soenneker.Queues.Intrusive.ValueMpsc" Version="4.0.36" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Queues.Intrusive.ValueMpsc" Version="4.0.36" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Queues.Intrusive.ValueMpsc" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Queues.Intrusive.ValueMpsc --version 4.0.36
                    
#r "nuget: Soenneker.Queues.Intrusive.ValueMpsc, 4.0.36"
                    
#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.
#:package Soenneker.Queues.Intrusive.ValueMpsc@4.0.36
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Queues.Intrusive.ValueMpsc&version=4.0.36
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Queues.Intrusive.ValueMpsc&version=4.0.36
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Queues.Intrusive.ValueMpsc

A zero-allocation, high-performance intrusive MPSC queue using value-based state


Installation

dotnet add package Soenneker.Queues.Intrusive.ValueMpsc

Overview

ValueIntrusiveMpscQueue<TNode> is a multi-producer / single-consumer (MPSC) queue built around an intrusive moving-dummy algorithm. It starts with a stub node; after each successful dequeue, the returned node becomes the next dummy head.

ValueIntrusiveMpscReclaimingQueue<TNode> uses a permanent internal stub instead. A successfully dequeued node is immediately released from the queue, so consumers can clear, pool, or re-enqueue it without waiting for another dequeue. This variant is useful for pooled async waiters and other workloads where delayed moving-dummy reclamation would require an additional cross-thread handshake.

This value variant stores the queue state directly in a mutable struct. Keep one instance in a field and never copy it or pass it by value: a copy would create a second consumer state over the same producer chain.

The producer tail is placed 64 bytes after the consumer head. This makes the queue state 72 bytes on the supported runtime, trading a small amount of embedded state for lower cache-coherency traffic under concurrent use.

Key characteristics:

  • Multiple producers may enqueue concurrently.
  • Exactly one consumer may dequeue.
  • Each enqueue performs a single atomic operation.
  • No allocations are performed by the queue.
  • Node linkage is stored directly on the node (intrusive).
  • The consumer fast path performs no atomic read-modify-write operation.
  • Producer and consumer state are cache-line separated to avoid false sharing.
  • Queue state can be embedded directly in another type.

This makes it especially suitable for hot paths in low-level concurrency primitives.

Choose the reclaiming variant when immediate node reuse matters. Its dequeue path occasionally re-enqueues the permanent stub, while the moving-dummy variant has the smaller steady-state dequeue algorithm.


Usage

Define a node type

Nodes must implement IIntrusiveNode<TNode> or derive from IntrusiveNode<TNode>.

public sealed class WorkItem : IntrusiveNode<WorkItem>
{
    public int Id;
}

Each node carries its own linkage; the queue never allocates or wraps nodes.


Create a queue with an initial dummy node

var stub = new WorkItem();
var queue = new ValueIntrusiveMpscQueue<WorkItem>(stub);

The queue keeps the current dummy alive. The original stub is released by the first successful dequeue and can then be reclaimed by the consumer.


Enqueue (multi-producer)

queue.Enqueue(new WorkItem { Id = 42 });

This operation is lock-free and safe to call concurrently from multiple threads.


Dequeue (single-consumer)

var released = queue.Head;

if (queue.TryDequeue(out var item))
{
    // Process item without changing item.Next.
    // "released" is the old dummy and is now safe to reclaim or relink.
}

The returned item is also the queue's new Head. Its payload can be processed immediately, but the node itself cannot be recycled, relinked, or re-enqueued until a later successful dequeue releases it.

If stronger dequeue guarantees are required (for example, when a producer has advanced the tail but not yet published the link), use:

queue.TryDequeueSpin(out var item, maxSpins: 16);

Correctness and constraints

This type intentionally enforces strict usage rules:

  • Exactly one consumer thread is supported.
  • A node must not be enqueued more than once at a time.
  • A node returned by a dequeue remains queue-owned as the moving dummy head.
  • Only the previous Head is released by a successful dequeue and safe to reuse.
  • A node must not be recycled, relinked, or re-enqueued while it is the current Head.
  • TryDequeue may return false while a producer is mid-enqueue — this is expected.

Violating these constraints will result in undefined behavior.

This is a low-level primitive, not a general-purpose collection.


When to use this

This queue is a good fit when:

  • You are building synchronization primitives (async locks, semaphores, schedulers).
  • Allocation-free behavior is mandatory.
  • You need tight control over memory ordering and visibility.
  • You can enforce a single-consumer contract.
  • You can keep the mutable queue struct in one stable storage location.

If you need a general-purpose queue with multiple consumers, prefer ConcurrentQueue<T> or System.Threading.Channels.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.Queues.Intrusive.ValueMpsc:

Package Downloads
Soenneker.Asyncs.Locks

The fastest .NET async lock.

Soenneker.Asyncs.Semaphores

A low-allocation asynchronous semaphore for bounded in-process concurrency.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.36 171,524 9/3/2026
4.0.35 84 9/3/2026
4.0.34 55,704 8/31/2026
4.0.33 102 8/30/2026
4.0.32 33,791 8/30/2026
4.0.31 93 8/29/2026
4.0.30 274,584 8/8/2026
4.0.29 108,832 7/28/2026
4.0.28 113 7/28/2026
4.0.27 124,443 7/18/2026
4.0.26 61,638 7/16/2026
4.0.25 219,558 6/19/2026
4.0.24 127 6/18/2026
4.0.23 218,424 6/5/2026
4.0.22 123 6/5/2026
4.0.21 123 6/5/2026
4.0.20 272,259 4/23/2026
4.0.19 5,222 4/23/2026
4.0.18 240,456 3/13/2026
4.0.17 131 3/12/2026
Loading failed

feat: add immediately reclaimable MPSC queue