NetPro.StackExchange.Redis
6.0.3-beta.6
This is a prerelease version of NetPro.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.
dotnet add package NetPro.StackExchange.Redis --version 6.0.3-beta.6
NuGet\Install-Package NetPro.StackExchange.Redis -Version 6.0.3-beta.6
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="NetPro.StackExchange.Redis" Version="6.0.3-beta.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NetPro.StackExchange.Redis --version 6.0.3-beta.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NetPro.StackExchange.Redis, 6.0.3-beta.6"
#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 NetPro.StackExchange.Redis as a Cake Addin #addin nuget:?package=NetPro.StackExchange.Redis&version=6.0.3-beta.6&prerelease // Install NetPro.StackExchange.Redis as a Cake Tool #tool nuget:?package=NetPro.StackExchange.Redis&version=6.0.3-beta.6&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
RedisManager使用
支持 StackExchange.Redis,支持分布式锁。 redisjson参考:redisjson
appsetting.json
"RedisConfiguration": {
"Enabled": true,
"KeyPrefix": "net:",
"Hosts": [
{
"Host": "185.56.167.565",
"Port": 6379
}
],
"ConnectTimeout": 1000,
"Database": 0,
"Password": "666666",
"ssl": false
}
使用
启用redis服务
public void ConfigureServices(IServiceCollection services)
{
//新增redis缓存注入
services.AddStackExchangeRedisExtensions<SystemTextJsonSerializer>(configuration);
}
构造函数注入
public class WeatherForecastController : ControllerBase
{
private readonly IRedisDatabase _redisDatabase;
/// <summary>
///
/// </summary>
/// <param name="redisManager"></param>
public WeatherForecastController(
IRedisDatabase redisDatabase)
{
_redisDatabase_ = redisDatabase;
}
}
方法说明
/// <summary>
///获取或者创建缓存
/// localExpiredTime参数大于0并且小于expiredTime数据将缓存到本地内存
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="key"></param>
/// <param name="func"></param>
/// <param name="expiredTime">redis过期时间,默认不过期</param>
/// <param name="localExpiredTime">本地过期时间,0 默认本地不缓存单位秒</param>
/// <returns></returns>
T GetOrSet<T>(string key, Func<T> func = null, TimeSpan? expiredTime = null, int localExpiredTime = 0);
方法中调用
//同步方法
var result = _redisDatabase_.GetOrCreate<string>("1",func: ()=>//获取key的值,没有找到则执行委托并将委托返回的值插入redis缓存
{
return "1";
},TimeSpan.FromeSecond(66));
//异步方法
var resultAsync = await _redisDatabase_.GetOrCreateAsync<string>("1",func: async()=>//获取key的值,没有找到则执行委托并将委托返回的值插入redis缓存
{
return await Task.FromResult("1") ;
});
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Newtonsoft.Json (>= 13.0.1)
- RedLock.net (>= 2.3.1)
- StackExchange.Redis (>= 2.2.88)
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 |
---|---|---|
6.0.16 | 188 | 7/24/2023 |
6.0.15 | 421 | 7/19/2022 |
6.0.14 | 462 | 7/10/2022 |
6.0.13 | 426 | 6/15/2022 |
6.0.12 | 389 | 6/15/2022 |
6.0.11 | 421 | 6/15/2022 |
6.0.10 | 428 | 6/11/2022 |
6.0.9 | 422 | 6/8/2022 |
6.0.8 | 429 | 5/26/2022 |
6.0.8-beta.3 | 117 | 5/24/2022 |
6.0.8-beta.2 | 116 | 5/24/2022 |
6.0.7 | 418 | 5/18/2022 |
6.0.6 | 435 | 4/28/2022 |
6.0.5 | 405 | 3/30/2022 |
6.0.5-beta.20 | 122 | 4/27/2022 |
6.0.5-beta.19 | 119 | 4/25/2022 |
6.0.5-beta.18 | 123 | 4/22/2022 |
6.0.5-beta.17 | 122 | 4/16/2022 |
6.0.5-beta.16 | 120 | 4/8/2022 |
6.0.5-beta.15 | 120 | 4/8/2022 |
6.0.5-beta.14 | 132 | 4/7/2022 |
6.0.5-beta.13 | 131 | 4/7/2022 |
6.0.5-beta.12 | 130 | 4/6/2022 |
6.0.5-beta.11 | 122 | 4/6/2022 |
6.0.5-beta.10 | 126 | 3/31/2022 |
6.0.5-beta.9 | 137 | 3/26/2022 |
6.0.5-beta.8 | 125 | 3/22/2022 |
6.0.5-beta.7 | 118 | 3/21/2022 |
6.0.5-beta.6 | 127 | 3/14/2022 |
6.0.5-beta.5 | 124 | 3/2/2022 |
6.0.5-beta.4 | 126 | 2/22/2022 |
6.0.5-beta.3 | 124 | 2/18/2022 |
6.0.5-beta.2 | 123 | 2/18/2022 |
6.0.5-beta.1 | 126 | 2/16/2022 |
6.0.4 | 429 | 2/10/2022 |
6.0.3 | 432 | 2/9/2022 |
6.0.3-beta.9 | 124 | 2/10/2022 |
6.0.3-beta.7 | 138 | 1/27/2022 |
6.0.3-beta.6 | 131 | 1/19/2022 |
6.0.3-beta.5 | 134 | 1/17/2022 |
6.0.3-beta.4 | 137 | 1/16/2022 |
6.0.3-beta.3 | 135 | 1/14/2022 |
6.0.3-beta.2 | 135 | 1/13/2022 |
6.0.3-beta.1 | 166 | 1/11/2022 |
6.0.2 | 331 | 1/6/2022 |
6.0.1 | 930 | 12/3/2021 |
3.1.11 | 320 | 11/17/2021 |
3.1.10 | 402 | 7/29/2021 |
3.1.9 | 376 | 7/1/2021 |
3.1.8 | 428 | 12/15/2020 |