Help for this page
# Concurrent non-blocking requests (synchronized with a delay) Mojo::IOLoop->delay( ... say $cpan->result->dom->at('title')->text; } )->wait;
sub { my $delay = shift; $ua->get($_ => $delay->begin) for @list_of_urls; },