コード例 #1
0
ファイル: redis.php プロジェクト: gilyaev/framework-bench
 /**
  * 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));
 }
コード例 #2
0
ファイル: redis.php プロジェクト: bamper/laravel.com
 /**
  * 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);
 }