DotNetWorkQueue.Transport.Redis
0.9.31
dotnet add package DotNetWorkQueue.Transport.Redis --version 0.9.31
NuGet\Install-Package DotNetWorkQueue.Transport.Redis -Version 0.9.31
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="DotNetWorkQueue.Transport.Redis" Version="0.9.31" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DotNetWorkQueue.Transport.Redis" Version="0.9.31" />
<PackageReference Include="DotNetWorkQueue.Transport.Redis" />
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 DotNetWorkQueue.Transport.Redis --version 0.9.31
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DotNetWorkQueue.Transport.Redis, 0.9.31"
#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 DotNetWorkQueue.Transport.Redis@0.9.31
#: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=DotNetWorkQueue.Transport.Redis&version=0.9.31
#tool nuget:?package=DotNetWorkQueue.Transport.Redis&version=0.9.31
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
DotNetWorkQueue.Transport.Redis
Redis transport for DotNetWorkQueue.
Features
- Redis message storage using StackExchange.Redis
- Lua scripts for atomic queue operations
- Supports delayed processing, message expiration, and priority queues
- Heartbeat monitoring for long-running messages
- Job scheduling with deduplication
- Targets .NET 10.0, .NET 8.0, .NET Framework 4.8, .NET Standard 2.0
Installation
dotnet add package DotNetWorkQueue.Transport.Redis
Quick Start
// Producer
using var queueContainer = new QueueContainer<RedisQueueInit>();
using var producer = queueContainer.CreateProducer<MyMessage>(
new QueueConnection("queueName", "localhost:6379"));
producer.Send(new MyMessage { Text = "Hello" });
// Consumer
using var consumer = queueContainer.CreateConsumer(
new QueueConnection("queueName", "localhost:6379"));
consumer.Start<MyMessage>(HandleMessage);
Documentation
License
LGPL-2.1-or-later
| 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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.
-
net10.0
- DotNetWorkQueue (>= 0.9.31)
- DotNetWorkQueue.Transport.Shared (>= 0.9.31)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- MsgPack.Cli (>= 1.0.1)
- StackExchange.Redis (>= 2.10.1)
-
net8.0
- DotNetWorkQueue (>= 0.9.31)
- DotNetWorkQueue.Transport.Shared (>= 0.9.31)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- MsgPack.Cli (>= 1.0.1)
- StackExchange.Redis (>= 2.10.1)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on DotNetWorkQueue.Transport.Redis:
| Package | Downloads |
|---|---|
|
Nexme.Redis.Implementation
Package Description |
|
|
DotNetWorkQueue.Dashboard.Api
Dashboard API for DotNetWorkQueue - provides REST endpoints for monitoring and managing queues |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.9.31 | 64 | 4/9/2026 |
| 0.9.30 | 75 | 4/8/2026 |
| 0.9.18 | 124 | 4/6/2026 |
| 0.9.14 | 198 | 4/3/2026 |
| 0.9.13 | 99 | 3/30/2026 |
| 0.9.12 | 85 | 3/29/2026 |
| 0.9.11 | 88 | 3/26/2026 |
| 0.9.10 | 103 | 3/20/2026 |
| 0.9.9 | 84 | 3/20/2026 |
| 0.9.6 | 140 | 3/17/2026 |
| 0.9.5 | 97 | 3/16/2026 |
| 0.9.1 | 89 | 3/10/2026 |
| 0.9.0 | 91 | 3/4/2026 |
| 0.8.1 | 102 | 2/23/2026 |
| 0.8.0 | 142 | 1/6/2026 |
| 0.7.6 | 554 | 2/2/2024 |
| 0.7.5 | 271 | 1/9/2024 |
| 0.7.4 | 240 | 1/9/2024 |
| 0.7.3 | 336 | 11/29/2023 |
| 0.7.2 | 232 | 11/29/2023 |
Loading failed