in reply to Async DNS with LWP
my @threads; for (...) { push @threads, async { ... do LWP stuff here ... }; } $_->join() for @threads;
Update: Oh yeah, Coro already provides some kind of support for HTTP through LWP, but it's hackish and it doesn't work with HTTPS.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Async DNS with LWP
by jc (Acolyte) on Oct 05, 2010 at 19:42 UTC | |
by ikegami (Patriarch) on Oct 05, 2010 at 21:26 UTC | |
by jc (Acolyte) on Oct 05, 2010 at 22:13 UTC | |
by BrowserUk (Patriarch) on Oct 05, 2010 at 22:34 UTC | |
by jc (Acolyte) on Oct 06, 2010 at 21:39 UTC | |
|