NAME

Resque::Plugin::Retry - Retry the fail job

SYNOPSIS

use Resque;

my $resque = Resque->new(redis => $redis_server, plugins => ['Retry']);
$resque->push('test-job' => +{
        class => 'Hoge',
        args  => [+{ cat => 'nyaaaa' }, +{ dog => 'bow' }],
        max_retry => 3,
    }
);

DESCRIPTION

Retry when the job fails

LICENSE

Copyright (C) meru_akimbo.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

AUTHOR

meru_akimbo <merukatoruayu0@gmail.com>