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

PHP port of resque (Workers and Queueing)

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

As discussed in issue #76 this is a refactor of the the current fork/in-process strategy into independent objects along with the addition of a fastcgi strategy to utilize php-fpm. A...

Hi, Who can help me make these code working whitout warnings? It is a file from Redis PHP Rescue PHP Deprecated: implode(): Passing glue string after array is deprecated. Swap...

The `stat` namespace in our Redis DB is approaching 2 million keys. What is the best way to clean up this namespace? Is it safe to delete the entire namespace?

See here: https://github.com/gliderlabs/docker-alpine/issues/173 In Worker.php the following command is issued: ```php exec('ps -A -o pid,command | grep [r]esque', $cmdOutput); ``` which does not work, since ps behaves a bit different...

https://github.com/chrisboulton/php-resque/blob/968b7e6a307a2079051dfc571d2fc2be0546209f/lib/Resque.php#L307 https://github.com/chrisboulton/php-resque/blob/968b7e6a307a2079051dfc571d2fc2be0546209f/lib/Resque.php#L298 Isn't "break" more appropriate than "$finished" variable?

In lib/Worker.php line:215 in Function work(): I think it should check pcntl_wifexited first before pcntl_wexitstatus. Because pcntl_wexitstatus is meaningless if pcntl_wifexited return false. For example, kill the child process would...

Full message ``` PHP Warning: fread(): Length parameter must be greater than 0 in vendor/chrisboulton/php-resque/lib/Redisent/Redisent.php on line 127 ```

https://yanqibin.github.io/2018/02/22/php-resque%E5%BB%B6%E8%BF%9F%E6%89%A7%E8%A1%8C%E4%B8%8E%E5%A4%B1%E8%B4%A5%E9%87%8D%E8%AF%95/

Hi Chris, I have been using this project in production from 2012. It solved many of our problems. And its a great idea to keep the whole redis compatibility. So,...