Ejemplo n.º 1
0
 /// <summary>
 ///     查询具有指定key的缓存是否已经存在
 /// </summary>
 /// <param name="key">缓存对象Key</param>
 /// <returns>返回是否存在的状态</returns>
 public bool IsExists(K key)
 {
     //local cache first.
     return(_innerContainer.IsExists(key) || _proxy.IsExists(key));
 }