Пример #1
0
 /**
  * Deletes all values in the cache
  *
  * @return \r8\Cache\Suffix Returns a self reference
  */
 public function flush()
 {
     $this->inner->flush();
     return $this;
 }
Пример #2
0
 /**
  * Deletes all values in the cache
  *
  * @return \r8\Cache\Layered Returns a self reference
  */
 public function flush()
 {
     $this->primary->flush();
     $this->secondary->flush();
     return $this;
 }