20 lines
496 B
C#
20 lines
496 B
C#
using CRM.Core.Model;
|
|
using ServiceStack.Redis;
|
|
|
|
namespace CRM.Core.DAL
|
|
{
|
|
public class RedisManager
|
|
{
|
|
|
|
/// <summary>
|
|
/// redis配置文件信息
|
|
/// </summary>
|
|
private static RedisConfigInfo redisConfigInfo = RedisStringHelper.GetConfig();
|
|
|
|
public static RedisClient GetClient()
|
|
{
|
|
return new RedisClient(redisConfigInfo.connectionString, redisConfigInfo.port, redisConfigInfo.password, redisConfigInfo.db);
|
|
}
|
|
}
|
|
}
|