in reply to highest performance http load test architecture in perl?

This:
my @threads; for(my $i = 0; $i < $numthreads; ++$i) { my $thread = threads->create(\&fetch,$i); push(@threads, $thread); }
..can be easily shorten to true perl'ish:
my @threads = map { threads->create \&fetch, $_ } 0 .. $numthreads-1;