aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-06-24 13:50:56 +0200
committerprovokateurin <kate@provokateurin.de>2025-06-24 13:51:11 +0200
commit20dc1a7ebc98b69a1ed241ca725216809c061835 (patch)
treec90341c5e61fc87d02cf59a506b11c879efbd648
parent59fab4df55e2bdaf49feaf5975a9ade26ad9de63 (diff)
downloadnextcloud-server-perf/appconfig/caching.tar.gz
nextcloud-server-perf/appconfig/caching.zip
-rw-r--r--lib/private/Memcache/Factory.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Memcache/Factory.php b/lib/private/Memcache/Factory.php
index a44f0127651..7fac31c433d 100644
--- a/lib/private/Memcache/Factory.php
+++ b/lib/private/Memcache/Factory.php
@@ -175,7 +175,7 @@ class Factory implements ICacheFactory {
* @return ICache
*/
public function createLocal(string $prefix = ''): ICache {
- $globalPrefix = $this->getGlobalPrefix();
+ $globalPrefix = 'prefix';
if (is_null($globalPrefix)) {
return new ArrayCache($prefix);
}