Exemplo n.º 1
0
 /**
  * Write an item to the cache for a given number of minutes.
  *
  * @param string $key
  * @param mixed  $value
  * @param int    $minutes
  */
 public function put($key, $value, $minutes)
 {
     $this->forever($key, $value);
     $this->redis->expire($key, $minutes * 60);
 }