- under Win32 AND Linux
- without having it crash due to too many leaked scalars
- without using a GB of ram
- without being incredibly slow when downloading
- Should run anywhere Perl+threads do.
(I don't have Linux!)
- No scalars leaked on my system.
- Uses 50MB for 4 concurrent threads.
- 16 files - 46,617,229 bytes - 181 seconds - 257 KB/s.
(The maximum throughput of my connection: 2496 kbps.)
#! perl -sw
use 5.010;
use strict;
use threads ( stack_size => 0 );;
use Thread::Queue;
sub thread {
my $tid = threads->tid;
require LWP::Simple;
my( $Q, $dir ) = @_;
while( my $url = $Q->dequeue ) {
my( $file ) = $url =~ m[/([^/]+)$];
my $status = LWP::Simple::getstore( $url, "$dir/$file" );
printf STDERR "[$tid] $url => $dir/$file: $status\n";
}
}
our $T ||= 4;
our $DIR ||= '.';
say scalar localtime;
my $Q = new Thread::Queue;
my @threads = map
threads->create( \&thread, $Q, $DIR ), 1 .. $T;
chomp, $Q->enqueue( $_ ) while <>;
$Q->enqueue( (undef) x $T );
$_->join for @threads;
say scalar localtime;
Console log from test session:
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.