/**
  * Remove all items from the cache.
  *
  * @return void
  */
 protected function flushItems()
 {
     $this->redis->flushdb();
 }
Example #2
0
 /**
  * Remove all items from the cache.
  *
  * @return void
  */
 public function flush()
 {
     $this->redis->flushdb();
 }