Skip to content

Commit 55efb80

Browse files
Merge pull request #11848 from nextcloud/docs-admin-remove-filelocking-toggle
fix: remove mention of legacy `filelocking.enabled` toggle
2 parents 5f0a7ba + 094ddb7 commit 55efb80

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

admin_manual/configuration_files/files_locking_transactional.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ the same document. Multiple users can open and edit a file at the same time and
2222
Transactional File locking does not prevent this. Rather, it prevents
2323
simultaneous 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
2727
the database load and improves performance. Admins of Nextcloud servers with
2828
heavy 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
3232
server and corresponding PHP module. After installing Redis you must enter a
3333
configuration 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
4847
recommended 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

Comments
 (0)