my @threads; for (...) { push @threads, async { ... do LWP stuff here ... }; } $_->join() for @threads;