1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-26 17:54:39 +02:00

Use unique per board cache keys per [1] important when using shared memory from opcode caches with multiple boards on one server.

[1] http://area51.phpbb.com/phpBB/viewtopic.php?p=201739#p201739


git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9541 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith
2009-06-04 15:59:42 +00:00
parent cd1c5de3a5
commit 832c6b2f62
5 changed files with 19 additions and 15 deletions

View File

@@ -62,7 +62,7 @@ class acm extends acm_memory
*/
function _read($var)
{
return xcache_get($var);
return xcache_get($this->key_prefix . $var);
}
/**
@@ -76,7 +76,7 @@ class acm extends acm_memory
*/
function _write($var, $data, $ttl = 2592000)
{
return xcache_set($var, $data, $ttl);
return xcache_set($this->key_prefix . $var, $data, $ttl);
}
/**
@@ -88,7 +88,7 @@ class acm extends acm_memory
*/
function _delete($var)
{
return xcache_unset($var);
return xcache_unset($this->key_prefix . $var);
}
/**
@@ -101,7 +101,7 @@ class acm extends acm_memory
function _isset($var)
{
// Most caches don't need to check
return xcache_isset($var);
return xcache_isset($this->key_prefix . $var);
}
}