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

php-resque is a Redis-backed PHP library for creating background jobs, placing them on multiple queues, and processing them later.

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

Hi, our worker looses the default queue sometimes. From the worker.log: ``` ** Pop blocking with timeout of 10 seconds ** Pop blocking with timeout of 10 seconds ** Running...

Question
Waiting for feedback

### updated for wrong assumption ## feature please make the signal handling configurable per signal. i'd like the handling of shutdown on SIGINT and SIGTERM, instead of a hard exit...

Enhancement

So, we have a default expiry for jobs, but I have a use-case where I want to get rid of data as quick as possible for security reasons. I want...

Enhancement

I have used your php-resque SDK for queuing process. I have used almost every feature. Somewhere in my application i need a dequeue functionality and i am not able to...

Enhancement

I have a worker that is executing multiple queues. Below is a simplified version of my code: ```php class JobTest extends BgJob { public function perform($args) { parent::parseArgs($args); $this->_failLongRunningJobs("common-queue"); //...

Question

The issue for Resque v4 in PR #117 but probably exists in previous versions of v4 and v3 ## Issue Selected events are not working: ![image](https://github.com/mjphaynes/php-resque/assets/40315177/1298ed1c-9934-4406-83b4-3d466e61747d) ## To reproduce 1....

Problem: We have a static property `$queue` in Resque.php which will be used by Worker while processing the jobs. But, we do not have a way to override the Resque...

Enhancement
Waiting for feedback

Hello! I'm having quite an issue with starting a worker using `s6-overlay`. It's a process monitor almost like `supervisor` but created specifically to use inside docker containers. The worker simply...

> 2023-02-13T14:57:52+00:00 [info] Deprecated: Resque\Helpers\SerializableClosure implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) BTW my...