/// <summary> /// 是否存在 /// </summary> public static bool Exists(string cacheType, string key) { if (string.Compare(cacheType, CacheType.Web, true) == 0) { return(BaseCache.Exists(key)); } else if (string.Compare(cacheType, CacheType.Redis, true) == 0) { return(IRedis.ExistsAsy(key).Result); } return(false); }
/// <summary> /// 是否存在 /// </summary> public static bool Exists(string cacheType, string key) { if (cacheType.ToLower() == CacheType.Web) { return(BaseCache.Exists(key)); } else if (cacheType.ToLower() == CacheType.Redis) { return(IRedis.ExistsAsy(key).Result); } return(false); }