Evet.
Zaman aşımı parametreleri
curl
iki seçeneğe sahiptir: --connect-timeout
ve --max-time
.
Manpage'den alıntı:
--connect-timeout <seconds>
Maximum time in seconds that you allow the connection to the
server to take. This only limits the connection phase, once
curl has connected this option is of no more use. Since 7.32.0,
this option accepts decimal values, but the actual timeout will
decrease in accuracy as the specified timeout increases in deci‐
mal precision. See also the -m, --max-time option.
If this option is used several times, the last one will be used.
ve:
-m, --max-time <seconds>
Maximum time in seconds that you allow the whole operation to
take. This is useful for preventing your batch jobs from hang‐
ing for hours due to slow networks or links going down. Since
7.32.0, this option accepts decimal values, but the actual time‐
out will decrease in accuracy as the specified timeout increases
in decimal precision. See also the --connect-timeout option.
If this option is used several times, the last one will be used.
Varsayılan
Burada (Debian'da), belirtilen süre ne olursa olsun --connect-timeout
ve varsayılan bağlantı zaman aşımı değeri , lib / connect.h'deki makroya göre 5 dakika gibi gözükse de , 2 dakika sonra bağlanmayı denemeyi durdurur .DEFAULT_CONNECT_TIMEOUT
İçin varsayılan bir değer --max-time
yok gibi gözüküyor, curl
eğer ilk bağlantı başarılı olursa bir cevap bekleyin.
Ne kullanmalı?
Muhtemelen ikinci seçenekle ilgileniyorsunuzdur --max-time
. Davan için onu ayarla 900
(15 dakika).
--connect-timeout
Gibi 60
bir şey için seçenek belirlemek (bir dakika) da iyi bir fikir olabilir. Aksi takdirde curl
, görünüşe göre bazı backoff algoritması kullanarak, tekrar tekrar bağlanmayı deneyecek.