http://www.perlmonks.org?node_id=811541


in reply to Re: Concurrent LWP usage (aka: LWP::PUA?)
in thread Parallel LWP usage

One solution is to use WWW::Curl::Simple. Here's everything I needed to convert:
#my $ua = LWP::Parallel::UserAgent->new; package CurlToes; use base 'WWW::Curl::Simple'; sub timeout {return 20;} sub fatal {return 0;} package main; my $ua = CurlToes->new();
Unfortunately, it's a bear of an install, requiring arcane things like "Moose". I never like having to install 24 modules on a machine, just to post to a few dozen urls in parallel... but it works... and it's the closest you'll get to a drop-in replacement for LWP::Parallel;