Skip to content
Snippets Groups Projects
Commit dc1a17b6 authored by Robin Appelman's avatar Robin Appelman
Browse files

memcache: also switch factory to prefix

parent 50408994
No related branches found
No related tags found
No related merge requests found
......@@ -12,16 +12,16 @@ class Factory {
/**
* get a cache instance, will return null if no backend is available
*
* @param bool $global
* @param string $prefix
* @return \OC\Memcache\Cache
*/
function create($global = false) {
function create($prefix = '') {
if (XCache::isAvailable()) {
return new XCache($global);
return new XCache($prefix);
} elseif (APC::isAvailable()) {
return new APC($global);
return new APC($prefix);
} elseif (Memcached::isAvailable()) {
return new Memcached($global);
return new Memcached($prefix);
} else {
return null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment