2025-03-17 08:35:19 +08:00
|
|
|
|
using FreeRedis;
|
2025-04-15 16:48:35 +08:00
|
|
|
|
using JiShe.CollectBus.Common.Models;
|
2025-03-17 08:35:19 +08:00
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.FreeRedisProvider
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IFreeRedisProvider
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 获取客户端
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <returns></returns>
|
2025-04-16 17:36:46 +08:00
|
|
|
|
RedisClient Instance { get; set; }
|
2025-03-17 08:35:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|