commonledger/php-resque-repeater

There is no license information available for the latest version (1.1) of this package.

php-resque-repeater is a fork of php-resque-scheduler, designed to manage repeating jobs in resque

1.1 2013-03-10 21:53 UTC

This package is not auto-updated.

Last update: 2024-04-22 22:57:33 UTC


README

php-resque-repeater is a fork of the php-resque-scheduler library, designed for managing repeating jobs that are run then enqueued again at a later time using Resque.

The major difference between this library and php-resque-scheduler is the repeating jobs are stored in a sorted set, which ensures that each unique job is only scheduled once. Any subsequent enqueues will overwrite the timestamp of the previous one. Basically, this enforces that each unique job type (across queue, class and args) can only be queued once.

The public api for php-resque-scheduler is similar to php-resque-scheduler. Further documentation on usage is pending.