/**
  * Remove all items from the cache.
  *
  * @return void 
  * @static 
  */
 public static function flush()
 {
     \Illuminate\Cache\MemcachedStore::flush();
 }
示例#2
0
文件: Memcached.php 项目: Devitek/orm
 /**
  * {@inheritdoc}
  */
 protected function doFlush()
 {
     return $this->store->flush();
 }