@@ -187,7 +187,7 @@ The following options are available to configure when using a single redis serve
187187 'memcache.locking' => '\OC\Memcache\Redis',
188188 'memcache.distributed' => '\OC\Memcache\Redis',
189189 'memcache.local' =>'\OC\Memcache\Redis' ,
190- 'memcache.customprefix ' => 'mynextcloudprefix',
190+ 'memcache_customprefix ' => 'mynextcloudprefix',
191191 'redis' => [
192192 // 'host' => see connection parameters below
193193 // 'port' => see connection parameters below
@@ -203,7 +203,7 @@ The following options are available to configure when using a redis cluster (all
203203 'memcache.locking' => '\OC\Memcache\Redis',
204204 'memcache.distributed' => '\OC\Memcache\Redis',
205205 'memcache.local' =>'\OC\Memcache\Redis' ,
206- 'memcache.customprefix ' => 'mynextcloudprefix',
206+ 'memcache_customprefix ' => 'mynextcloudprefix',
207207 'redis.cluster' => [
208208 'seeds' => [ // provide some/all of the cluster servers to bootstrap discovery, port required
209209 'cache-cluster:7000',
@@ -385,7 +385,7 @@ collisions when using the same cache for multiple Nextcloud instances.
385385If you want to make sure to prevent collisions alltogether, you can use the following
386386setting to define your custom prefix::
387387
388- 'memcache.customprefix ' => 'mynextcloudprefix',
388+ 'memcache_customprefix ' => 'mynextcloudprefix',
389389
390390This also allows you to create ACLs in Redis and limit the keys specific users can access
391391(e.g. if you want to isolate specific Nextcloud instances when using the same cache).
0 commit comments