multi-threading

J

Jason Quek

Hi

I have a long list of URLs and I need to do HTTP requests for each of
these domains.

# -----------------------------------------------------------------
@urls = (
'http://www.yahoo.com',
'http://www.google.com',
'http://www.msn.com',
'http://www.altavista.com'
);

use LWP::UserAgent;
$ua = LWP::UserAgent->new;

foreach $url (@urls)
{
$req = HTTP::Request->new('GET', "$url");
$results = $ua->request($req)->as_string;

# then process $results
}
# -----------------------------------------------------------------

How do I multi-thread so that multiple URLs are http-requested at the
same time?

Any help would be appreciated.

Thank you



Jason Q.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top