15 lines
275 B
C#
15 lines
275 B
C#
|
|
using FreeRedis;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.FreeRedisProvider
|
|||
|
|
{
|
|||
|
|
public interface IFreeRedisProvider
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 获取客户端
|
|||
|
|
/// </summary>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
RedisClient Instance { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|