Files

18 lines
432 B
C#
Raw Permalink Normal View History

2024-11-28 13:36:05 +08:00
using CSRedis;
using Infrastructure;
2024-12-03 09:25:16 +08:00
namespace DOAN.Common.Cache
2024-11-28 13:36:05 +08:00
{
public class RedisServer
{
public static CSRedisClient Cache;
public static CSRedisClient Session;
public static void Initalize()
{
Cache = new CSRedisClient(AppSettings.GetConfig("RedisServer:Cache"));
Session = new CSRedisClient(AppSettings.GetConfig("RedisServer:Session"));
}
}
}