LiteX.Cache.Redis
9.0.0
dotnet add package LiteX.Cache.Redis --version 9.0.0
NuGet\Install-Package LiteX.Cache.Redis -Version 9.0.0
<PackageReference Include="LiteX.Cache.Redis" Version="9.0.0" />
paket add LiteX.Cache.Redis --version 9.0.0
#r "nuget: LiteX.Cache.Redis, 9.0.0"
// Install LiteX.Cache.Redis as a Cake Addin
#addin nuget:?package=LiteX.Cache.Redis&version=9.0.0
// Install LiteX.Cache.Redis as a Cake Tool
#tool nuget:?package=LiteX.Cache.Redis&version=9.0.0
LiteX Redis Cache
Distributed caching based on StackExchange.Redis and Redis.
This client library enables working with the Redis Cache for caching any type of data.
Small library to abstract caching mechanism to Redis Cache. Quick setup for Redis Cache and very simple wrapper for the Redis Cache.
Very simple configuration in advanced ways. Purpose of this package is to bring a new level of ease to the developers who deal with Redis Cache integration with their system.
Basic Usage
Install the package
Install via Nuget.
PM> Install-Package LiteX.Cache.Redis
AppSettings
{
//LiteX Redis Cache settings
"RedisConfig": {
"RedisCachingConnectionString": "127.0.0.1:6379,ssl=False",
"PersistDataProtectionKeysToRedis": false,
"EnableLogging": true
}
}
Configure Startup Class
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// 1. Use default configuration from appsettings.json's 'RedisConfig'
services.AddLiteXRedisCache();
//OR
// 2. Load configuration settings using options.
services.AddLiteXRedisCache(option =>
{
option.RedisCachingConnectionString = "127.0.0.1:6379,ssl=False";
option.EnableLogging = false;
});
//OR
// 3. Load configuration settings on your own.
// (e.g. appsettings, database, hardcoded)
var redisConfig = new RedisConfig()
{
RedisCachingConnectionString = "127.0.0.1:6379,ssl=False",
EnableLogging = false,
};
services.AddLiteXRedisCache(redisConfig);
}
}
Sample Usage Example
Same for all providers.
For more helpful information about LiteX Caching, Please click here.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.1
- LiteX.Cache.Core (>= 9.0.0)
- LiteX.Log (>= 2.0.0)
- Microsoft.Extensions.Configuration (>= 3.1.10)
- Microsoft.Extensions.Configuration.Binder (>= 3.1.10)
- Microsoft.Extensions.DependencyInjection (>= 3.1.10)
- Newtonsoft.Json (>= 12.0.3)
- RedLock.net.StrongName (>= 2.1.0)
- StackExchange.Redis.StrongName (>= 1.2.6)
-
.NETStandard 2.0
- LiteX.Cache.Core (>= 9.0.0)
- LiteX.Log (>= 2.0.0)
- Microsoft.Extensions.Configuration (>= 3.1.10)
- Microsoft.Extensions.Configuration.Binder (>= 3.1.10)
- Microsoft.Extensions.DependencyInjection (>= 3.1.10)
- Newtonsoft.Json (>= 12.0.3)
- RedLock.net.StrongName (>= 2.1.0)
- StackExchange.Redis.StrongName (>= 1.2.6)
-
.NETStandard 2.1
- LiteX.Cache.Core (>= 9.0.0)
- LiteX.Log (>= 2.0.0)
- Microsoft.Extensions.Configuration (>= 3.1.10)
- Microsoft.Extensions.Configuration.Binder (>= 3.1.10)
- Microsoft.Extensions.DependencyInjection (>= 3.1.10)
- Newtonsoft.Json (>= 12.0.3)
- RedLock.net.StrongName (>= 2.1.0)
- StackExchange.Redis.StrongName (>= 1.2.6)
-
net5.0
- LiteX.Cache.Core (>= 9.0.0)
- LiteX.Log (>= 2.0.0)
- Microsoft.Extensions.Configuration (>= 5.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 5.0.0)
- Microsoft.Extensions.DependencyInjection (>= 5.0.1)
- Newtonsoft.Json (>= 12.0.3)
- RedLock.net.StrongName (>= 2.1.0)
- StackExchange.Redis.StrongName (>= 1.2.6)
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 |
---|---|---|
9.0.0 | 438 | 1/1/2021 |
8.1.0 | 747 | 4/4/2020 |
8.0.0 | 1,276 | 9/19/2019 |
7.0.3 | 2,001 | 1/31/2019 |
7.0.2 | 1,798 | 8/25/2018 |
7.0.1 | 707 | 8/9/2018 |
7.0.0 | 806 | 6/30/2018 |
6.2.0 | 881 | 6/23/2018 |
6.1.0 | 880 | 6/18/2018 |
6.0.0 | 860 | 6/2/2018 |
5.0.0 | 801 | 5/7/2018 |
4.0.0 | 917 | 5/4/2018 |
3.0.0 | 886 | 4/25/2018 |
2.0.0 | 836 | 4/22/2018 |
1.0.0 | 917 | 4/20/2018 |
Upgrade to .NET 5.x.
Added multi-framework target support - .NET 5, .NET Core 3.1, .NET Standard 2.1 and .NET Standard 2.0
Update libraries and SDKs to latest version.
Last release notes:
-> Multiple provider support (using provider factory) - AddLiteXRedisCacheFactory
-> Code re-factoring and optimization changes