You can reduce the time ServerSync takes to scan your local sync folders by changing the single-threaded logic used by default to run ServerSync to multi-threaded logic.
To configure ServerSync to scan more quickly:
-
Open the following file for editing:
%APPDATA%\FileCloudServerSync\syncclientconfig.xml -
Add the following code:
<rowentry> <name>fsscantype</name> <type>string</type> <value>multi</value> </rowentry> <rowentry> <name>fsscanmaxthreads</name> <type>string</type> <value>15</value> </rowentry>In most cases, optimal speed is achieved by setting the parameter fsscanmaxthreads in the code above to 15.
-
Save your changes and close the file.
-
For the changes to take effect, restart ServerSync.
To revert back to single threaded, logic:
-
Set the fsscantype parameter to single.
-
Remove or comment out the second variable.
-
Save your changes and close the file.
-
For the changes to take effect, restart ServerSync.
<rowentry> <name>fsscantype</name> <type>string</type> <value>single</value> </rowentry> <!-- <rowentry> <name>fsscanmaxthreads</name> <type>string</type> <value>15</value> </rowentry> -->