Redis.NetCore 0.8.8-beta

This is a prerelease version of Redis.NetCore.
dotnet add package Redis.NetCore --version 0.8.8-beta
NuGet\Install-Package Redis.NetCore -Version 0.8.8-beta
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="Redis.NetCore" Version="0.8.8-beta" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Redis.NetCore --version 0.8.8-beta
#r "nuget: Redis.NetCore, 0.8.8-beta"
#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 Redis.NetCore as a Cake Addin
#addin nuget:?package=Redis.NetCore&version=0.8.8-beta&prerelease

// Install Redis.NetCore as a Cake Tool
#tool nuget:?package=Redis.NetCore&version=0.8.8-beta&prerelease

Redis.NetCore

Async all the way .Net Core client for Redis

Why another .Net Redis client? Well I was having issues with some of the others when using Async and .Net Core... so I created one (of cource). The goal is to be unencumbered by the past, specifically targetting Async only and .Net Core. So please do not ask to add sync versions of APIs or test on anything other than .Net Core projects (although I have done some light testing with .Net 4.62 full framework).

Installation

Redis.NetCore is on nuget:

https://www.nuget.org/packages/Redis.NetCore

Install-Package Redis.NetCore -Pre 

Features

  • Async all the way
  • Connection pool with multiplexed connections
  • Pipelines
  • Current support of redis feature set (Strings, Keys, Connection) (working on adding full support over time.)

Basic Usage

Coming soon...

Contributing

  1. Please submit an issue first!
  2. If appropriate, submit a pull request.
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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.6 is compatible.  netstandard2.0 was computed.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  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 tizen30 was computed.  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

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.8.8-beta 869 9/26/2017
0.8.7-beta 745 9/21/2017
0.8.6-beta 714 9/20/2017
0.8.4-beta 654 7/8/2017
0.8.3-beta 640 5/21/2017
0.8.1-beta 738 5/3/2017
0.7.4-beta 792 4/6/2017
0.7.3-beta 732 4/6/2017
0.7.2-beta 739 3/30/2017
0.7.1-beta 719 3/30/2017
0.7.0-beta 775 3/30/2017

Add keepalive heartbeat and socket timeout.