Skip to content

Instantly share code, notes, and snippets.

@TristinDavis
Forked from kraih/coro-bench.pl
Created November 18, 2012 05:07
Show Gist options
  • Save TristinDavis/4103688 to your computer and use it in GitHub Desktop.
Save TristinDavis/4103688 to your computer and use it in GitHub Desktop.
An example showing how to use a Mojo::IOLoop.
#!/usr/bin/env perl
use Mojolicious::Lite;
use Coro;
use Mojo::IOLoop;
Mojo::IOLoop->recurring(0 => sub {cede});
hook around_dispatch => sub {
my $next = shift;
async { $next->() };
};
get '/' => sub {
my $self = shift;
my $ua = Mojo::UserAgent->new;
# Comment this line out to see the performance difference
$ua->ioloop->recurring(0 => sub {cede});
$self->render(
text => $ua->get('mojolicio.us')->res->dom->html->head->title->text);
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment