php-resque
php-resque copied to clipboard
An implementation of Resque in PHP.
## Expected Behavior I tried to use a prefix. So I defined it while running my workers, and then I tried to use the same prefix when enqueuing. ## Current...
### My question: Could you create a release in GitHub for 1.3.6? Other versions are marked as a release. ## My Environment * PHP-Resque version: 1.3.5 * PHP version: 7.4...
In general, Alpine contains the `ps` command but not supports the `-p` option. More detailed info can be found here - https://github.com/wodby/php/issues/130 ## Expected Behavior The managing of the child...
Example of code: ~~~ function func10() { _echo('before'); } function func20() { _echo('after'); } # Resque::setBackend('localhost:6379'); # Resque_Event::listen('beforePerform','func10'); Resque_Event::listen('afterPerform' ,'func20'); # Resque::enqueue('default','worker',[]); ~~~ * PHP-Resque version: 1.3.6 * PHP version:...
Hi, could you tell me how to shut down worker process and only use kill command to execute? $worker->shutdownNow() has no effect.
It would be nice if the project moved to a PSR-4 compliant namespace. Since this would be a BC breaking change, this would require a major version bump.
Jobs don't get queued when arguments have invalid (non utf-8) encoding. Also you get a valid ID. ## Expected Behavior \Resque::enqueue() should fail with a meaningful error message ## Current...
## Expected Behavior PHP7 needs to catch Throwable instead Exception ## Current Behavior try-catch don't catch Throwable instead Exception ## Possible Solution refactor all try-catch ## My Environment * PHP-Resque...
## Expected Behavior Refactor the current job reservation logic to call out to one of several, separate job reserver classes, and implement an additional one for selecting between configured queues...
## Expected Behavior Refactor the current implementation to pull forking and in-process (no-fork) execution strategies into separate classes, which the worker processes will then use to actually spawn jobs according...