Exemplo n.º 1
-3
 /**
  * Delete an item from the cache.
  *
  * @param  string  $key
  * @return void
  */
 public function forget($key)
 {
     $this->redis->del($key);
 }
Exemplo n.º 2
-3
 /**
  * Flush the entire cache.
  *
  * @return void
  */
 public function flush()
 {
     $this->redis->flushdb();
 }