1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-29 19:20:23 +02:00

Introduce XCache and eAccelerator, make some small changes to the abstract, forgot a period in the command for r9537 :(

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9538 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith
2009-06-04 15:04:36 +00:00
parent 2230e32514
commit 0cdad21cb3
3 changed files with 243 additions and 1 deletions

View File

@@ -228,7 +228,7 @@ class acm_memory
{
if ($var_name[0] == '_')
{
return true;
return $this->_isset($var_name);
}
else
{
@@ -398,6 +398,19 @@ class acm_memory
return @unlink($filename);
}
/**
* Check if a cache var exists
*
* @access protected
* @param string $var Cache key
* @return bool True if it exists, otherwise false
*/
function _isset($var)
{
// Most caches don't need to check
return true;
}
}
?>