diff options
author | provokateurin <kate@provokateurin.de> | 2025-06-24 13:50:56 +0200 |
---|---|---|
committer | provokateurin <kate@provokateurin.de> | 2025-06-24 13:51:11 +0200 |
commit | 20dc1a7ebc98b69a1ed241ca725216809c061835 (patch) | |
tree | c90341c5e61fc87d02cf59a506b11c879efbd648 | |
parent | 59fab4df55e2bdaf49feaf5975a9ade26ad9de63 (diff) | |
download | nextcloud-server-perf/appconfig/caching.tar.gz nextcloud-server-perf/appconfig/caching.zip |
-rw-r--r-- | lib/private/Memcache/Factory.php | 2 |
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); } |