fix #489 APC cache가 삭제되지 않는 문제 수정

This commit is contained in:
bnu 2014-03-10 09:43:02 +09:00
parent 98328aedf2
commit aab1c6a1e1

View file

@ -84,7 +84,7 @@ class CacheApc extends CacheBase
if($modified_time > 0 && $modified_time > $obj[0])
{
$this->delete($_key);
$this->delete($key);
return false;
}
@ -110,7 +110,7 @@ class CacheApc extends CacheBase
if($modified_time > 0 && $modified_time > $obj[0])
{
$this->delete($_key);
$this->delete($key);
return false;
}
@ -125,7 +125,8 @@ class CacheApc extends CacheBase
*/
function delete($key)
{
return apc_delete($key);
$_key = md5(_XE_PATH_ . $key);
return apc_delete($_key);
}
/**