示例#1
0
 /**
  * {@inheritdoc}
  */
 protected function doFlush()
 {
     return $this->store->flush();
 }
示例#2
0
 /**
  * Remove all items from the cache.
  *
  * @return void 
  * @static 
  */
 public static function flush()
 {
     \Illuminate\Cache\RedisStore::flush();
 }
示例#3
0
 /**
  * Remove all items from the cache.
  *
  * @return void
  */
 public function flush()
 {
     $isCluster = config('database.redis.cluster');
     if (!$isCluster) {
         parent::flush();
     }
 }