RedisTribute 0.2.1-beta0001

This is a prerelease version of RedisTribute.
There is a newer version of this package available.
See the version list below for details.
dotnet add package RedisTribute --version 0.2.1-beta0001
NuGet\Install-Package RedisTribute -Version 0.2.1-beta0001
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="RedisTribute" Version="0.2.1-beta0001" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add RedisTribute --version 0.2.1-beta0001
#r "nuget: RedisTribute, 0.2.1-beta0001"
#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.
// Install RedisTribute as a Cake Addin
#addin nuget:?package=RedisTribute&version=0.2.1-beta0001&prerelease

// Install RedisTribute as a Cake Tool
#tool nuget:?package=RedisTribute&version=0.2.1-beta0001&prerelease

RedisTribute

RedisTribute is a dotnet standard client for Redis, written from the ground up.

The main aims of the client are:

  • To create a pluggable, fault tolerant Redis client for .NET (with a focus on supporting DotNet Core / Standard)
  • A simple, async interface with support for cancellation tokens
  • To support basic Redis operations
  • To enable fast POCO to Redis mapping
  • To be performant with granular control over thread and socket usage
  • Expose detailed telemetry to enable diagnostic analysis and monitoring

Basic usage


// NOTE: The client is designed to be used as a singleton and can be shared across threads - there is an overhead in creating new clients each call

using (var client = ((ClientConfiguration)"localhost:6379").CreateClient())
{
    await client.SetAsync("key1", "Hello world!");

    var result = await client.GetAsync<string>("key1");

    result.IfFound(Console.WriteLine);
}

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 is compatible.  netcoreapp2.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 RedisTribute:

Package Downloads
RedisTribute.Json

JSON serialization extensions for RedisTribute

RedisTribute.ApplicationInsights

Application insight extensions for RedisTribute

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.3-beta 463 3/29/2020
0.3.2 797 2/22/2020
0.3.1-beta0001 470 2/9/2020
0.2.1-beta0021 450 1/16/2020
0.2.1-beta0017 364 12/27/2019
0.2.1-beta0001 401 11/12/2019
0.1.0-beta0186 412 10/5/2019
0.1.0-beta0180 435 9/27/2019
0.1.0-beta0163 411 9/21/2019