shop_template_api/ARW.Common/Cache/RedisServer.cs
2023-06-02 21:15:33 +08:00

18 lines
431 B
C#

using CSRedis;
using Infrastructure;
namespace ARW.Common.Cache
{
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"));
}
}
}