Commit 7ce9c6f2 authored by Taylor Otwell's avatar Taylor Otwell

Improved comments in memcached cache driver.

parent 55e1055d
<?php namespace System\Cache\Driver; <?php namespace System\Cache\Driver;
class File implements \System\Cache\Driver { class Memcached implements \System\Cache\Driver {
/** /**
* All of the loaded cache items. * All of the loaded cache items.
...@@ -26,7 +26,7 @@ class File implements \System\Cache\Driver { ...@@ -26,7 +26,7 @@ class File implements \System\Cache\Driver {
* @param string $key * @param string $key
* @param mixed $default * @param mixed $default
* @return mixed * @return mixed
*/ */
public function get($key, $default = null) public function get($key, $default = null)
{ {
if (array_key_exists($key, $this->items)) if (array_key_exists($key, $this->items))
...@@ -34,25 +34,14 @@ class File implements \System\Cache\Driver { ...@@ -34,25 +34,14 @@ class File implements \System\Cache\Driver {
return $this->items[$key]; return $this->items[$key];
} }
if ( ! file_exists(APP_PATH.'cache/'.$key)) $cache = \System\Memcached::instance()->get(\System\Config::get('cache.key').$key);
{
return $default;
}
$cache = file_get_contents(APP_PATH.'cache/'.$key);
// -------------------------------------------------- if ($cache === false)
// Has the cache expired? The UNIX expiration time
// is stored at the beginning of the file.
// --------------------------------------------------
if (time() >= substr($cache, 0, 10))
{ {
$this->forget($key);
return $default; return $default;
} }
return $this->items[$key] = unserialize(substr($cache, 10)); return $this->items[$key] = $cache;
} }
/** /**
...@@ -65,7 +54,7 @@ class File implements \System\Cache\Driver { ...@@ -65,7 +54,7 @@ class File implements \System\Cache\Driver {
*/ */
public function put($key, $value, $minutes) public function put($key, $value, $minutes)
{ {
file_put_contents(APP_PATH.'cache/'.$key, (time() + ($minutes * 60)).serialize($value), LOCK_EX); \System\Memcached::instance()->set(\System\Config::get('cache.key').$key, $value, 0, $minutes * 60);
} }
/** /**
...@@ -76,7 +65,7 @@ class File implements \System\Cache\Driver { ...@@ -76,7 +65,7 @@ class File implements \System\Cache\Driver {
*/ */
public function forget($key) public function forget($key)
{ {
@unlink(APP_PATH.'cache/'.$key); \System\Memcached::instance()->delete(\System\Config::get('cache.key').$key);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment