Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    ...
        my $content = get $_;
        ### do something with it.
    }
    
  2. or download this
    #! perl -slw
    use strict;
    ...
    $Q->enqueue( $url ) while ...; ## fetch urls from somewhere and Q them
    $Q->enqueue( (undef) x $THREADS );
    $_->join for @workers;