Revert back APC and Memcached drivers.
This commit is contained in:
parent
2809eb260f
commit
8457238ab1
|
@ -41,7 +41,7 @@ protected function retrieve($key)
|
|||
{
|
||||
if (($cache = apc_fetch($this->key.$key)) !== false)
|
||||
{
|
||||
return unserialize($cache);
|
||||
return $cache;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -60,7 +60,7 @@ protected function retrieve($key)
|
|||
*/
|
||||
public function put($key, $value, $minutes)
|
||||
{
|
||||
apc_store($this->key.$key, serialize($value), $minutes * 60);
|
||||
apc_store($this->key.$key, $value, $minutes * 60);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -49,7 +49,7 @@ protected function retrieve($key)
|
|||
{
|
||||
if (($cache = $this->memcache->get($this->key.$key)) !== false)
|
||||
{
|
||||
return unserialize($cache);
|
||||
return $cache;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -68,7 +68,7 @@ protected function retrieve($key)
|
|||
*/
|
||||
public function put($key, $value, $minutes)
|
||||
{
|
||||
$this->memcache->set($this->key.$key, serialize($value), 0, $minutes * 60);
|
||||
$this->memcache->set($this->key.$key, $value, 0, $minutes * 60);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue