Commit 1d96b968 authored by Taylor Otwell's avatar Taylor Otwell

Force memcached cache driver to return null as default.

parent a29e76f2
...@@ -24,30 +24,20 @@ class Memcached implements \System\Cache\Driver { ...@@ -24,30 +24,20 @@ class Memcached implements \System\Cache\Driver {
* Get an item from the cache. * Get an item from the cache.
* *
* @param string $key * @param string $key
* @param mixed $default
* @return mixed * @return mixed
*/ */
public function get($key, $default = null) public function get($key)
{ {
// --------------------------------------------------
// If the item has already been loaded, return it.
// --------------------------------------------------
if (array_key_exists($key, $this->items)) if (array_key_exists($key, $this->items))
{ {
return $this->items[$key]; return $this->items[$key];
} }
// --------------------------------------------------
// Attempt to the get the item from cache.
// --------------------------------------------------
$cache = \System\Memcached::instance()->get(\System\Config::get('cache.key').$key); $cache = \System\Memcached::instance()->get(\System\Config::get('cache.key').$key);
// --------------------------------------------------
// Verify that the item was retrieved.
// --------------------------------------------------
if ($cache === false) if ($cache === false)
{ {
return $default; return null;
} }
return $this->items[$key] = $cache; return $this->items[$key] = $cache;
......
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