Soenneker.Redis.Client 4.0.2323

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Redis.Client --version 4.0.2323
                    
NuGet\Install-Package Soenneker.Redis.Client -Version 4.0.2323
                    
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.Redis.Client" Version="4.0.2323" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Redis.Client" Version="4.0.2323" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Redis.Client" />
                    
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.Redis.Client --version 4.0.2323
                    
#r "nuget: Soenneker.Redis.Client, 4.0.2323"
                    
#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.Redis.Client@4.0.2323
                    
#: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.Redis.Client&version=4.0.2323
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Redis.Client&version=4.0.2323
                    
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

Soenneker.Redis.Client

Provides shared, lazily connected StackExchange.Redis ConnectionMultiplexer instances through dependency injection.

Installation

dotnet add package Soenneker.Redis.Client

Configuration

The parameterless Get() overload reads the connection string from configuration:

{
  "Azure": {
    "Redis": {
      "ConnectionString": "localhost:6379,abortConnect=false"
    }
  }
}

Alternatively, pass a StackExchange.Redis connection string directly to Get(connectionString).

Registration and use

using Microsoft.Extensions.DependencyInjection;
using Soenneker.Redis.Client.Abstract;
using Soenneker.Redis.Client.Registrars;
using StackExchange.Redis;

services.AddRedisClientAsSingleton();

IRedisClient redisClient = serviceProvider.GetRequiredService<IRedisClient>();
ConnectionMultiplexer multiplexer = await redisClient.Get(cancellationToken);
IDatabase database = multiplexer.GetDatabase();

await database.StringSetAsync("orders:42:status", "ready");
RedisValue status = await database.StringGetAsync("orders:42:status");

The singleton registration is the normal choice: ConnectionMultiplexer is designed to be shared. Each distinct connection string is connected once and cached for the lifetime of IRedisClient. The scoped registrar is available when a scope must own and dispose its own connection cache.

The client enables StackExchange.Redis administrative commands for compatibility with the Soenneker server utilities. Restrict the configured Redis credentials and network access accordingly.

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 (4)

Showing the top 4 NuGet packages that depend on Soenneker.Redis.Client:

Package Downloads
Soenneker.Redis.Util

The general purpose utility library leveraging Redis for all of your caching needs

Soenneker.Redis.Client.Server

A utility library for Redis server client accessibility

Soenneker.Redis.Dump

Redis database export, import, and copy utilities for .NET

Soenneker.Deduplication.Redis

Distributed duplicate suppression backed by Redis.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.2324 0 9/9/2026
4.0.2323 0 9/9/2026
4.0.2322 0 9/9/2026
4.0.2321 0 9/8/2026
4.0.2320 159 9/8/2026
4.0.2319 169 9/8/2026
4.0.2318 131 9/7/2026
4.0.2317 217 9/7/2026
4.0.2316 188 9/7/2026
4.0.2315 83 9/7/2026
4.0.2314 465 9/5/2026
4.0.2313 347 9/5/2026
4.0.2312 197 9/5/2026
4.0.2311 579 9/4/2026
4.0.2310 465 9/4/2026
4.0.2309 91 9/4/2026
4.0.2308 332 9/4/2026
4.0.2307 925 9/1/2026
4.0.2306 314 8/31/2026
4.0.2305 485 8/31/2026
Loading failed

Update dependency Soenneker.Dictionaries.Singletons to 4.0.98 (#3043)