|
@@ -60,11 +60,23 @@ class Redis extends Driver {
|
|
|
*/
|
|
|
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.
|
|
|
*
|