> From: Gary Maxwell > > > Does curl tool implement any kind of parallel download? > > > As Daniel said, no. But that wouldn't stop me from launching multiple > command shells and invoking looping curl scripts on each one. You'll > approach the same effect. > Correction: Multiple curl instances will not behave the same as a single libcurl application.
The libcurl caches (DNS and connections) will not share among curl instances. Also, you would have to provide a list of the URLs to a single curl instance for those requests to share any cache benefit. -Gary ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
