AnyEvent-Net-Curl-Queued

 view release on metacpan or  search on metacpan

eg/crawl-apache.pl  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use utf8;
use warnings qw(all);

use Data::Printer;

use YADA;
use CrawlApache;

my $q = YADA->new;
$q->append(sub {
    CrawlApache->new('http://localhost/manual/')
});
$q->wait;

p $q->stats;



( run in 0.582 second using v1.01-cache-2.11-cpan-39bf76dae61 )