parallel-immediate.md (808B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: parallel-immediate 5 Help: Do not wait for multiplexing 6 Added: 7.68.0 7 Category: connection curl global 8 Multi: boolean 9 Scope: global 10 See-also: 11 - parallel 12 - parallel-max 13 Example: 14 - --parallel-immediate -Z $URL -o file1 $URL -o file2 15 --- 16 17 # `--parallel-immediate` 18 19 When doing parallel transfers, this option instructs curl to prefer opening up 20 more connections in parallel at once rather than waiting to see if new 21 transfers can be added as multiplexed streams on another connection. 22 23 By default, without this option set, curl prefers to wait a little and 24 multiplex new transfers over existing connections. It keeps the number of 25 connections low at the expense of risking a slightly slower transfer startup.