You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
3 months ago
|
namespace Kean.Infrastructure.Hangfire
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Redis 仓库
|
||
|
/// </summary>
|
||
|
public sealed class RedisStorage
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 连接串
|
||
|
/// </summary>
|
||
|
public string ConnectionString { get; set; } = "127.0.0.1:6379";
|
||
|
|
||
|
/// <summary>
|
||
|
/// DB
|
||
|
/// </summary>
|
||
|
public int Database { get; set; } = 2;
|
||
|
}
|
||
|
}
|