using FreeRedis;
namespace ServiceCenter.Redis
{
///
/// 链接集合
///
public class RedisClientList
{
///
/// 连接集合
///
/// 连接标识
/// 连接
/// 连接字符串
public RedisClientList(string key, RedisClient client, string connectionConfig)
{
Key = key;
Client = client;
ConnectionConfig = connectionConfig;
}
///
/// 连接标识
///
public string Key { get; set; }
///
/// 连接
///
public RedisClient Client { get; set; }
///
/// 连接字符串
///
public string ConnectionConfig { get; set; }
}
}