• 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
  1. Should run anywhere Perl+threads do.

    (I don't have Linux!)

  2. No scalars leaked on my system.
  3. Uses 50MB for 4 concurrent threads.
  4. 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.
"Too many [] have been sedated by an oppressive environment of political correctness and risk aversion."

In reply to Re: Parallel downloading under Win32? by BrowserUk
in thread Parallel downloading under Win32? by Xenofur

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.