コード例 #1
0
ファイル: ApcStore.php プロジェクト: shinichi81/laravel4demo
 /**
  * Remove an item from the cache.
  *
  * @param  string  $key
  * @return array|bool
  */
 public function forget($key)
 {
     $this->apc->delete($this->prefix . $key);
 }