php-resque-ex-scheduler icon indicating copy to clipboard operation
php-resque-ex-scheduler copied to clipboard

An addon for php-resque that lets you queue jobs for execution some time in the future. Follows resque-scheduler.

Results 10 php-resque-ex-scheduler issues
Sort by recently updated
recently updated
newest added

Sending QUIT OR TERM signal doesnt seem to actually exit the worker properly. When testing worker will output exiting and hang there until killed by process manager. We are using...

When using PHP's `Redis` class, the method signature for `Redis:: zrangebyscore` is different than when using the `Redisent` client.

There is an incompatibility in this lib: ``` lisp PHP Warning: Missing argument 4 for ResqueScheduler\ResqueScheduler::jobToHash(), called in /var/www/project/vendor/kamisama/php-resque-ex-scheduler/lib/ResqueScheduler/ResqueScheduler.php on line 132 and defined in /var/www/project/vendor/kamisama/php-resque-ex-scheduler/lib/ResqueScheduler/ResqueScheduler.php on line 175 PHP...

…Shell->stats it needs to look for the next job to be executed, "future" included.

This error occurred when trying to remove delayed jobs using the `removeDelayed` function. ``` lisp PHP Fatal error: Call to undefined method Resque_Redis::removePrefix() in /var/www/project/vendor/kamisama/php-resque-ex-scheduler/lib/ResqueScheduler/ResqueScheduler.php on line 136 PHP Stack...

``` php /** * Get the number of jobs for a given timestamp in the delayed schedule. * * @param DateTime|int $timestamp Timestamp * @return int Number of scheduled jobs....

To create a sort of CronJob like behaviour I would like to see what Events are scheduled. This could also be a kickstart for my application to validate the standard...

When starting the scheduler worker, it asks which queue to poll. What is the name of the delayed queue? Or should I just state the name of the destination queue...

Is there a reason why a method for disabling the job schedule by hash (unique id) is not implemented?

question