Immediate.Jobs.Redis 0.5.0

dotnet add package Immediate.Jobs.Redis --version 0.5.0
                    
NuGet\Install-Package Immediate.Jobs.Redis -Version 0.5.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="Immediate.Jobs.Redis" Version="0.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Immediate.Jobs.Redis" Version="0.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Immediate.Jobs.Redis" />
                    
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 Immediate.Jobs.Redis --version 0.5.0
                    
#r "nuget: Immediate.Jobs.Redis, 0.5.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.
#:package Immediate.Jobs.Redis@0.5.0
                    
#: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=Immediate.Jobs.Redis&version=0.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Immediate.Jobs.Redis&version=0.5.0
                    
Install as a Cake Tool

Immediate.Jobs.Redis

NuGet Documentation License

Distributed Redis queue and recurring storage for Immediate.Jobs, built on StackExchange.Redis.

Installation

dotnet add package Immediate.Jobs --prerelease
dotnet add package Immediate.Jobs.Redis --prerelease

Configuration

Register an application-owned IConnectionMultiplexer, then select Redis storage and configure its key placement:

builder.Services.AddSingleton<IConnectionMultiplexer>(_ =>
	ConnectionMultiplexer.Connect("localhost:6379"));

builder.Services.AddMyAppHandlers();
builder.Services.AddMyAppJobs()
	.ConfigureStorage(storage => storage
		.UseRedis()
		.ConfigureRedis(redis =>
		{
			redis.Database = 0;
			redis.KeyPrefix = "billing-jobs";
		}));

AddMyAppJobs is the generated registration method for an assembly named MyApp.

The provider resolves IConnectionMultiplexer from dependency injection. The application controls how that connection is created and shared. Registering it with the factory overload of AddSingleton lets the service provider dispose it at shutdown.

The prefix isolates applications and keeps all of the application's keys in one Redis Cluster slot, which is required for operations that update several keys together. Database defaults to -1 (the server default), and KeyPrefix defaults to immediate-jobs. Prefixes cannot be empty or contain braces; invalid options fail validation when the host starts.

Redis coordinates job claims between every application replica automatically. No UseSingleServer() or UseDistributed() call is needed. If a process stops, work that it claimed becomes available to another replica after the lease expires.

Capabilities and limitations

Redis supports ordinary and recurring jobs, cancellation, retries, execution history, and retention.

Redis does not support fair queues, batches, or continuations; fair scheduling and dependency graphs require the Entity Framework Core or LinqToDB provider.

More information

Product 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 is compatible.  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.  net11.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.5.0 36 8/28/2026
0.4.0 103 8/12/2026
0.3.0 98 8/7/2026
0.2.0 105 8/4/2026
0.1.0 99 7/31/2026