php-resque 是輕量級後台任務系統,基於Redis,功能設計簡單,配置彈性。比起MQ系統大而全的MQ系統,這個顯得小而美。
PHP CLI
模式下,後台守護方式運行。
composer config -g repo.packagist composer https://packagist.phpcomposer.com
舊版
Composer:This package is abandoned and no longer maintained. The author suggests using the resque/php-resque package instead.
composer require "chrisboulton/php-resque 1.2"
更新為新的擴充包:resque/php-resque
composer require resque/php-resque
DemoJob.php
<?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);
Worker程式碼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;
#啟動worker
php-resque 的環境變數有:
QUEUE – 這個是必要的,會決定worker要執行什麼任務,重要的在前,例如QUEUE=notify,mail,log 。也可以設定為 QUEUE=* 表示執行所有任務。
APP_INCLUDE – 可選,載入檔案用的。可設為 APP_INCLUDE=require.php ,在 require.php 中引進所有 Job 的 Class即可。
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的安裝和使用已經完成。 後面的章節是工具插件, 僅供參考。
介面
安裝
gem install resque-web -v 0.0.8運行
resque-web -p 40000
#監控
/usr/bin/python /usr/bin/supervisord -c /etc/supervisor/supervisord.conf
[program:worker_lumen_resque] directory=/home/wwwroot/mysite command=php resque-worker.php environment=QUEUE='default'
以上是php-resque :基於Redis的後台任務系統的詳細內容。更多資訊請關注PHP中文網其他相關文章!