1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-14 23:26:58 +02:00

All: Improved: Allow using multiple connections to download items while synchronising (#1633)

* Task queue

* All: Improved sync speed by downloading items in parallel

* Improved download queue
This commit is contained in:
Laurent Cozic
2019-06-07 23:20:08 +01:00
committed by GitHub
parent df714c357d
commit 9f6b3ccf40
4 changed files with 207 additions and 3 deletions

View File

@@ -163,6 +163,8 @@ class Setting extends BaseModel {
};
}},
'sync.maxConcurrentConnections': {value: 5, type: Setting.TYPE_INT, public: true, section: 'sync', label: () => _('Max concurrent connections'), minimum: 1, maximum: 20, step: 1},
'sync.2.path': { value: '', type: Setting.TYPE_STRING, section:'sync', show: (settings) => {
try {
return settings['sync.target'] == SyncTargetRegistry.nameToId('filesystem')