Download multiple URIs concurrently, with inter-leaved downloads
This function allows the caller to specify multiple URIs to download at the same time. All the requests are submitted and then the replies are processed as data becomes available on each connection. In this way, the responses are processed in an inter-leaved fashion, with a chunk from one response from one request being processed and then followed by a chunk from a different request.
Downloading documents asynchronously involves some trade-offs. The switching between different streams, detecting when input is available on any of them involves a little more processing and so increases the consumption of CPU cycles. On the other hand, there is a potentially large saving of time when one considers total time to download. See http://www.omegahat.net/RCurl/concurrent.xml for more details. This is a common trade-off that arises in concurrent/parallel/asynchronous computing.
getURIAsynchronous(url, ..., .opts = list(), write = NULL, curl = getCurlHandle(), multiHandle = getCurlMultiHandle(), perform = Inf, .encoding = integer(), binary = rep(NA, length(url)))
url |
a character vector identifying the URIs to download. |
... |
named arguments to be passed to |
.opts |
a named list or |
write |
an object giving the functions or routines that are to be called when input is waiting on the different HTTP response streams. By default, a separate callback function is associated with each input stream. This is necessary for the results to be meaningful as if we use a single reader, it will be called for all streams in a haphazard order and the content interleaved. One can do interesting things however using a single object. |
curl |
the prototypical curlHandle that is duplicated and used in in |
multiHandle |
this is a curl handle for performing asynchronous requests. |
perform |
a number which specifies the maximum number of calls to
|
.encoding |
an integer or a string that explicitly identifies the
encoding of the content that is returned by the HTTP server in its
response to our query. The possible strings are
‘UTF-8’ or ‘ISO-8859-1’
and the integers should be specified symbolically
as |
binary |
a logical vector identifying whether each URI has binary content or simple text. |
This uses curlMultiPerform
and the multi/asynchronous interface for libcurl.
The return value depends on the run-time characteristics of the call. If the call merely specifies the URIs to be downloaded, the result is a named character vector. The names identify the URIs and the elements of the vector are the contents of the corresponding URI.
If the requests are not performed or completed
(i.e. perform
is zero or too small a value to process all the chunks)
a list with 2 elements is returned.
These elements are:
multiHandle |
the curl multi-handle, of class
|
write |
the |
Duncan Temple Lang <duncan@r-project.org>
Curl homepage http://curl.haxx.se
uris = c("http://www.omegahat.net/RCurl/index.html", "http://www.omegahat.net/RCurl/philosophy.xml") txt = getURIAsynchronous(uris) names(txt) nchar(txt)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.