Beispiel #1
0
 /**
  * Write an item to the cache that lasts forever.
  *
  * @param  string  $key
  * @param  mixed   $value
  * @return void
  */
 public function forever($key, $value)
 {
     $this->redis->set($key, serialize($value));
 }
Beispiel #2
0
 /**
  * Write an item to the cache for a given number of minutes.
  *
  * <code>
  *		// Put an item in the cache for 15 minutes
  *		Cache::put('name', 'Taylor', 15);
  * </code>
  *
  * @param  string  $key
  * @param  mixed   $value
  * @param  int     $minutes
  * @return void
  */
 public function put($key, $value, $minutes)
 {
     $this->redis->set($key, serialize($value));
     $this->redis->expire($key, $minutes * 60);
 }