Browse Source

adjust default concurrent level

pull/2283/head
Chris Lu 3 years ago
parent
commit
49a8dfb976
  1. 2
      weed/shell/command_remote_cache.go

2
weed/shell/command_remote_cache.go

@ -51,7 +51,7 @@ func (c *commandRemoteCache) Do(args []string, commandEnv *CommandEnv, writer io
remoteMountCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
dir := remoteMountCommand.String("dir", "", "a directory in filer")
concurrency := remoteMountCommand.Int("concurrent", 8, "concurrent file downloading")
concurrency := remoteMountCommand.Int("concurrent", 32, "concurrent file downloading")
fileFiler := newFileFilter(remoteMountCommand)
if err = remoteMountCommand.Parse(args); err != nil {

Loading…
Cancel
Save