Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Current »




Set Parallel Writes Globally

This can be done by adding the following to your appSettings.json file

*Note: The default parallel write value is set at 4, 8, or 12 based on CPU logical processors count of the machine running the SkySync service.
If the CPU Logical Processors is 2, the default parallel writes value is 4.
If the CPU Logical Processors is 8, the default parallel writes value is 8.
If the CPU Logical Processors is 32, the default parallel writes value is 12.


{
  "performance": {
        "parallel_writes": 4
         }
     }
}

This feature should be considered in context. Please see: SkySync Best Practices and Requirements for more details.


Disable Security

Update appSettings.json file to include "security": false, parameter

The Manager will be able to access the application with no login. There will be no logout option within the application


....
  "server": {
	"security": false
  }
  • No labels