lib/model: Increase in-flight buffer from 2mb to 8mb, download 2 files at a time

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3972
This commit is contained in:
Audrius Butkevicius 2017-02-08 20:00:55 +00:00 committed by Jakob Borg
parent dfe23e8d53
commit 72de47df00
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ const (
)
const (
defaultCopiers = 1
defaultPullers = 16
defaultCopiers = 2
defaultPullers = 64
defaultPullerSleep = 10 * time.Second
defaultPullerPause = 60 * time.Second
)