示例#1
0
文件: Cache.php 项目: jasny/Q
 /**
  * Remove data from cache.
  * 
  * @param string  $id   Cache id
  * @param int     $opt  Cache::% options
  */
 public function remove($id, $opt = 0)
 {
     $this->doRemove($id);
     if (isset($this->chainNext) && ~$opt & self::NOCASCADE) {
         $this->chainNext->remove($id);
     }
 }