using FreeRedis; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.FreeRedisProvider; public interface IFreeRedisProviderService { /// /// 默认客户端 /// IRedisClient FreeRedis { get; } /// /// 获取客户端 /// /// IRedisClient GetClient(); /// /// 切换Redis数据库 /// /// /// IRedisClient GetDatabase(int index = 0); }