/minion

Perl job queue

Primary LanguagePerlArtistic License 2.0Artistic-2.0

Minion Build Status

A Mango job queue for the Mojolicious real-time web framework.

use Mojolicious::Lite;

my $uri = 'mongodb://<user>:<pass>@<server>/<database>';
plugin Minion => {uri => $uri};

# Very slow task
app->minion->add_task(slow_log => sub {
  my ($job, $msg) = @_;
  sleep 5;
  $job->app->log->debug(qq{Received message "$msg".});
});

# Perform job in a background process
get '/' => sub {
  my $self = shift;
  $self->minion->enqueue(slow_log => [$self->param('msg') // 'no message']);
  $self->render(text => 'Your message will be logged soon.');
};

app->start;

Just start a background worker process in addition to your web server.

$ ./myapp.pl minion worker

Installation

All you need is a oneliner, it takes less than a minute.

$ curl -L cpanmin.us | perl - -n Minion

We recommend the use of a Perlbrew environment.