CodeNet.StackExchange.Redis
1.1.1-preview1
This is a prerelease version of CodeNet.StackExchange.Redis.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
The owner has unlisted this package.
This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package CodeNet.StackExchange.Redis --version 1.1.1-preview1
NuGet\Install-Package CodeNet.StackExchange.Redis -Version 1.1.1-preview1
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="CodeNet.StackExchange.Redis" Version="1.1.1-preview1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CodeNet.StackExchange.Redis" Version="1.1.1-preview1" />
<PackageReference Include="CodeNet.StackExchange.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 CodeNet.StackExchange.Redis --version 1.1.1-preview1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CodeNet.StackExchange.Redis, 1.1.1-preview1"
#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.
#addin nuget:?package=CodeNet.StackExchange.Redis&version=1.1.1-preview1&prerelease
#tool nuget:?package=CodeNet.StackExchange.Redis&version=1.1.1-preview1&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CodeNet.StackExchange.Redis
CodeNet.StackExchange.Redis is a .Net library.
Installation
Use the package manager npm to install CodeNet.StackExchange.Redis
dotnet add package CodeNet.StackExchange.Redis
Usage
appSettings.json
{
"StackExchangeRedis": {
"Configuration": "localhost:6379",
"Channel": "test-channel"
}
}
program.cs
using CodeNet.Core.Extensions;
using CodeNet.StackExchange.Redis.Extensions;
using CodeNet.StackExchange.Redis.Module;
using ExampleApi.Models;
var builder = WebApplication.CreateBuilder(args);
builder
.AddStackExcahangeProducer(builder.Configuration.GetSection("StackExchangeRedis"))
.AddStackExcahangeConsumer(builder.Configuration.GetSection("StackExchangeRedis"));
builder.Services.AddScoped<IStackExchangeConsumerHandler<StackExchangeConsumerService>, MessageConsumerHandler>();
//...
var app = builder.Build();
app.UseStackExcahangeConsumer<StackExchangeConsumerService>();
//...
app.Run();
Usage Producer
public class MessageProducer(StackExchangeProducerService Producer)
{
public async Task<ResponseBase> Send(MessageProducerRequest request, CancellationToken cancellationToken)
{
await Producer.Publish(request.Data);
return new ResponseBase("200", "Successfull");
}
}
Usage Consumer
public class MessageConsumerHandler : IStackExchangeConsumerHandler<StackExchangeConsumerService>
{
public void Handler(ReceivedMessageEventArgs<KeyValueModel> args)
{
Console.WriteLine($"MessageId: {args.MessageId}, Value: {args.Data.Value}");
}
}
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- CodeNet.Core (>= 1.1.1-preview1)
- Newtonsoft.Json (>= 13.0.3)
- StackExchange.Redis (>= 2.8.16)
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 |
---|---|---|
1.1.3 | 93 | 4/11/2025 |