@@ -22,8 +22,8 @@ the same document. Multiple users can open and edit a file at the same time and
2222Transactional File locking does not prevent this. Rather, it prevents
2323simultaneous file saving.
2424
25- File locking is enabled by default, using the database locking backend. This
26- places a significant load on your database. Using ``memcache.locking `` relieves
25+ Transactional File locking will use the database locking backend by default . This
26+ places a significant load on your database. Setting ``memcache.locking `` relieves
2727the database load and improves performance. Admins of Nextcloud servers with
2828heavy workloads should install a memcache. (See
2929:doc: `../configuration_server/caching_configuration `.)
@@ -32,7 +32,6 @@ To use a memcache with Transactional File Locking, you must install the Redis
3232server and corresponding PHP module. After installing Redis you must enter a
3333configuration in your ``config.php `` file like this example::
3434
35- 'filelocking.enabled' => true,
3635 'memcache.locking' => '\OC\Memcache\Redis',
3736 'redis' => array(
3837 'host' => 'localhost',
@@ -48,7 +47,6 @@ If you want to configure Redis to listen on an Unix socket (which is
4847recommended if Redis is running on the same system as Nextcloud) use this example
4948``config.php `` configuration::
5049
51- 'filelocking.enabled' => true,
5250 'memcache.locking' => '\OC\Memcache\Redis',
5351 'redis' => array(
5452 'host' => '/var/run/redis/redis.sock',
0 commit comments