Added proper cache::forever implementations to each driver.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
This commit is contained in:
Taylor Otwell
2012-03-14 09:02:24 -05:00
parent 873dd1534c
commit 2f4d896958
6 changed files with 61 additions and 13 deletions

View File

@@ -73,6 +73,18 @@ class File extends Driver {
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.
*