You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using System.Configuration;
|
|
|
|
namespace Txgy.RBS.Framework.RedisHelper.Init
|
|
{
|
|
/// <summary>
|
|
/// redis配置文件信息
|
|
/// 也可以放到配置文件去
|
|
/// </summary>
|
|
public sealed class RedisConfigInfo
|
|
{
|
|
/// <summary>
|
|
/// 可写的Redis链接地址
|
|
/// format:ip1,ip2
|
|
///
|
|
/// 默认6379端口
|
|
/// </summary>
|
|
public string WriteServerList = "beijingtianxiangguoyue@127.0.0.1:6379";
|
|
/// <summary>
|
|
/// 可读的Redis链接地址
|
|
/// format:ip1,ip2
|
|
/// </summary>
|
|
public string ReadServerList = "beijingtianxiangguoyue@127.0.0.1:6379";
|
|
/// <summary>
|
|
/// 最大写链接数
|
|
/// </summary>
|
|
public int MaxWritePoolSize = 60;
|
|
/// <summary>
|
|
/// 最大读链接数
|
|
/// </summary>
|
|
public int MaxReadPoolSize = 60;
|
|
/// <summary>
|
|
/// 本地缓存到期时间,单位:秒
|
|
/// </summary>
|
|
public int LocalCacheTime = 180;
|
|
/// <summary>
|
|
/// 自动重启
|
|
/// </summary>
|
|
public bool AutoStart = true;
|
|
/// <summary>
|
|
/// 是否记录日志,该设置仅用于排查redis运行时出现的问题,
|
|
/// 如redis工作正常,请关闭该项
|
|
/// </summary>
|
|
public bool RecordeLog = false;
|
|
}
|
|
} |