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

An implementation of Resque in PHP.

Results 35 php-resque issues
Sort by recently updated
recently updated
newest added

## 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...

bug

### 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...

question

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...

feature request

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:...

question

Hi, could you tell me how to shut down worker process and only use kill command to execute? $worker->shutdownNow() has no effect.

question

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.

feature request

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...

bug

## 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...

enhancement

## 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...

enhancement
help wanted
feature request

## 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...

enhancement
help wanted
feature request