@@ -22,8 +22,8 @@ the same document. Multiple users can open and edit a file at the same time and
22
22
Transactional File locking does not prevent this. Rather, it prevents
23
23
simultaneous file saving.
24
24
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
27
27
the database load and improves performance. Admins of Nextcloud servers with
28
28
heavy workloads should install a memcache. (See
29
29
:doc: `../configuration_server/caching_configuration `.)
@@ -32,7 +32,6 @@ To use a memcache with Transactional File Locking, you must install the Redis
32
32
server and corresponding PHP module. After installing Redis you must enter a
33
33
configuration in your ``config.php `` file like this example::
34
34
35
- 'filelocking.enabled' => true,
36
35
'memcache.locking' => '\OC\Memcache\Redis',
37
36
'redis' => array(
38
37
'host' => 'localhost',
@@ -48,7 +47,6 @@ If you want to configure Redis to listen on an Unix socket (which is
48
47
recommended if Redis is running on the same system as Nextcloud) use this example
49
48
``config.php `` configuration::
50
49
51
- 'filelocking.enabled' => true,
52
50
'memcache.locking' => '\OC\Memcache\Redis',
53
51
'redis' => array(
54
52
'host' => '/var/run/redis/redis.sock',
0 commit comments