Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion users/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,18 @@ The following child elements may exist:
.. option:: folder.scanProgressIntervalS

The interval in seconds with which scan progress information is sent to the GUI. Setting to ``0``
will cause Syncthing to use the default value of two.
will cause Syncthing to use the default value of two. Setting a negative value will disable
scan progress information.
Enabling scan progress information will buffer the entire file list in RAM (using approximately 512 bytes per file):
this can cause high memory usage and GC thrashing on large folders, greatly slowing down scans,
so it is recommended to disable this for truly large folders.

.. option:: folder.scanProgressFileLimit

Disable emission of scan progress information if more than the specified number of files
are encountered during the scan, useful to avoid OOMs while buffering the entire file list
in RAM for truly large folders.
Setting to ``0`` will cause Syncthing to use the default value of ``2048``.

.. option:: folder.pullerPauseS

Expand Down