The documentation on the pmap function leaves me wondering how efficient it would be for something like fetching a collection of XML feeds over the web. I have no idea how many concurrent fetch operations pmap would spawn and what the maximum would be.
| ||||
|
feedback
|
|
If you check the source you see:
The
| |||||||||
feedback
|
|
Building on Alex's excellent answer that explains how pmap works, here's my suggestion for your situation:
Rationale:
| |||
|
feedback
|
|
No time to write a long response, but there's a clojure.contrib http-agent which creates each get/post request as its own agent. So you can fire off a thousand requests and they'll all run in parallel and complete as the results come in. | |||
|
feedback
|