Hello guys.

I've wrote script like this to get about 2000 charts from Graphite:


use Mojo::UserAgent;
use Mojo::IOLoop;

my $ua = Mojo::UserAgent->new;

foreach my $mhash (@{$mainarray}) {
  $ua->get($mhash->{graphURL} => sub {
       my ($ua, $tx) = @_;
       $tx->res->content->asset->move_to($graphname);
  });
}

Mojo::IOLoop->start unless Mojo::IOLoop->is_running;

1;

How can I restrict Mojo::UserAgent to create only 40 concurrent connection 
to remote server?

With best regards, Yuriy.

-- 
You received this message because you are subscribed to the Google Groups 
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mojolicious+unsubscr...@googlegroups.com.
To post to this group, send email to mojolicious@googlegroups.com.
Visit this group at https://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.

Reply via email to