Exemplo n.º 1
0
 /**
  * Write an item to the cache that lasts forever.
  *
  * @param string $key
  * @param $value
  */
 public function forever($key, $value)
 {
     $this->redis->set($key, serialize($value));
 }