Are there examples of WWW::Curl::Multi?

curl, perl

Solution

To give you insight into the community: I've never seen `WWW::Curl::Multi` in use. The overwhelming majority satisfy their parallel http needs with either `POE::Component::Client::HTTP` (for ftp and others there are other clients), or `Parallel::ForkManager` and `LWP`. Not to say that curl isn't great and that the added multi-network functionality isn't nice, just to say in practice the other two implementations are much more common.

I want to acknowledge that curl multi works great for the php community, and I know nothing bad per se about the perl bindings.

Problem

Does somebody have a working example of using WWW::Curl::Multi?

Original source