Added proper cache::forever implementations to each driver.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
This commit is contained in:
parent
873dd1534c
commit
2f4d896958
|
|
@ -63,6 +63,18 @@ public function put($key, $value, $minutes)
|
|||
apc_store($this->key.$key, $value, $minutes * 60);
|
||||
}
|
||||
|
||||
/**
|
||||
* Write an item to the cache that lasts forever.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return void
|
||||
*/
|
||||
public function forever($key, $value)
|
||||
{
|
||||
return $this->put($key, $value, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an item from the cache.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -87,6 +87,18 @@ public function put($key, $value, $minutes)
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Write an item to the cache for five years.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return void
|
||||
*/
|
||||
public function forever($key, $value)
|
||||
{
|
||||
return $this->put($key, $value, 2628000);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an item from the cache.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -53,18 +53,6 @@ abstract protected function retrieve($key);
|
|||
*/
|
||||
abstract public function put($key, $value, $minutes);
|
||||
|
||||
/**
|
||||
* Write an item to the cache for five years.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return void
|
||||
*/
|
||||
public function forever($key, $value)
|
||||
{
|
||||
return $this->put($key, $value, 2628000);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get an item from the cache, or cache and return the default value.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -73,6 +73,18 @@ public function put($key, $value, $minutes)
|
|||
file_put_contents($this->path.$key, $value, LOCK_EX);
|
||||
}
|
||||
|
||||
/**
|
||||
* Write an item to the cache for five years.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return void
|
||||
*/
|
||||
public function forever($key, $value)
|
||||
{
|
||||
return $this->put($key, $value, 2628000);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an item from the cache.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -71,6 +71,18 @@ public function put($key, $value, $minutes)
|
|||
$this->memcache->set($this->key.$key, $value, 0, $minutes * 60);
|
||||
}
|
||||
|
||||
/**
|
||||
* Write an item to the cache that lasts forever.
|
||||
*
|
||||
* @param string $key
|
||||
* @param mixed $value
|
||||
* @return void
|
||||
*/
|
||||
public function forever($key, $value)
|
||||
{
|
||||
return $this->put($key, $value, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an item from the cache.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -60,11 +60,23 @@ protected function retrieve($key)
|
|||
*/
|
||||
public function put($key, $value, $minutes)
|
||||
{
|
||||
$this->redis->set($key, serialize($value));
|
||||
$this->forever($key, $value);
|
||||
|
||||
$this->redis->expire($key, $minutes * 60);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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));
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete an item from the cache.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in New Issue