示例#1
0
文件: broker.php 项目: samj1912/repo
 public function hasKey($key)
 {
     if ($this->fast_cache->hasKey($key)) {
         return true;
     }
     return $this->slow_cache->hasKey($key);
 }