php-resque 是輕量級後臺任務系統,基於Redis,功能設計簡單,配置靈活。相比MQ系統大而全的MQ系統,這個顯得小而美。php
PHP CLI
模式下,後臺守護方式運行。composer config -g repo.packagist composer https://packagist.phpcomposer.com
舊版python
Composer:This package is abandoned and no longer maintained. The author suggests using the resque/php-resque package instead.web
composer require "chrisboulton/php-resque 1.2"
更新爲新的擴展包:resque/php-resque
redis
composer require resque/php-resque
DemoJob.phpcomposer
<?php class DemoJob { public function perform() { // Work work work //echo $this->args['name']; } }
<?php Resque::setBackend('localhost:6379'); $args = array( 'name' => 'hanmeimei', ); Resque::enqueue('default', DemoJob::class, $args);
resque-worker.php工具
<?php $redis_dsn = '127.0.0.1:6379'; putenv("REDIS_BACKEND=$redis_dsn"); // 引入隊列的入口程序 $resque = realpath(dirname(__FILE__) . '/vendor/chrisboulton/php-resque/resque.php'); require_once $resque;
php-resque
的環境變量有:ui
QUEUE
– 這個是必要的,會決定 worker 要執行什麼任務,重要的在前,例如 QUEUE=notify,mail,log 。也能夠設定為 QUEUE=* 表示執行全部任務。this
APP_INCLUDE
– 可選,加載文件用的。能夠設成 APP_INCLUDE=require.php ,在 require.php 中引入全部 Job 的 Class便可。spa
COUNT
– 設定 worker 數量,預設是1 COUNT=5 。插件
REDIS_BACKEND
– 設定 Redis 的 ip, port。若是沒設定,預設是連 localhost:6379 。
LOGGING
, VERBOSE – 設定 log, VERBOSE=1 便可。
VVERBOSE
– 比較詳細的 log, VVERBOSE=1 debug 的時候能夠開出來看。
INTERVAL
– worker 檢查 queue 的間隔,預設是五秒 INTERVAL=5 。
PIDFILE
– 若是你是開單 worker,能夠指定 PIDFILE 把 pid 寫入,例如 PIDFILE=/var/run/resque.pid 。
BACKGROUND
能夠把 resque 丟到背景執行。或者使用 php resque.php &
就能夠了。
示例
QUEUE=counter php resque-worker.php
至此,php-resque的安裝和使用已經完畢。
後面的章節是工具插件, 僅供參考。
resque-web
監控 PHP-Resque 的運行情況
安裝
gem install resque-web -v 0.0.8
運行
resque-web -p 40000
supervisor
啓動服務
/usr/bin/python /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
監控項目配置
/etc/supervisor/conf.d/lumen_resque.conf
[program:worker_lumen_resque] directory=/home/wwwroot/mysite command=php resque-worker.php environment=QUEUE='default'
優勢: