2025-04-17 20:28:50 +08:00
|
|
|
|
namespace JiShe.CollectBus.FreeRedis.Options
|
2025-03-12 09:58:37 +08:00
|
|
|
|
{
|
2025-03-13 11:55:51 +08:00
|
|
|
|
public class FreeRedisOptions
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 连接字符串
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? Configuration { get; set; }
|
|
|
|
|
|
|
2025-04-16 17:36:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 最大连接数
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? MaxPoolSize { get; set; }
|
|
|
|
|
|
|
2025-03-13 11:55:51 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 默认数据库
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? DefaultDB { get; set; }
|
2025-03-12 09:58:37 +08:00
|
|
|
|
|
2025-03-13 11:55:51 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// HangfireDB
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string? HangfireDB { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-03-12 09:58:37 +08:00
|
|
|
|
|