php-resque

    14熱度

    2回答

    我想用php-resque做一個後臺工作。我有這樣的代碼: \Resque::setBackend('127.0.0.1:6379'); \Resque::enqueue('default', '\BaseModule\Jobs\Mail', array()); 和郵件類我有這個 class Mail { public function perform() {

    0熱度

    1回答

    取消作業我使用下面庫 https://github.com/chrisboulton/php-resque 如何取消正在運行的作業。我試圖讓工人對象並殺死孩子..但對象沒有任何孩子。

    1熱度

    1回答

    我正在使用php-resque https://github.com/chrisboulton/php-resque的第一步。 任何人都知道如何在job class內部得到jobid?

    0熱度

    1回答

    我使用resque到後臺處理兩種類型的工作的多個作業: (1) 3rd-party API requests (2) DB query and insert 雖然兩份工作可以平行處理,本身每個作業類型只能串行順序處理。例如,數據庫操作需要按照連續順序進行,但可以與第三方API請求並行執行。 我考慮以下兩種方法的執行這樣的: (1) Having two queues with one que

    1熱度

    1回答

    我正在與Yii-resque擴展名。 我需要禁用Yii-resque log。 我該怎麼做?

    3熱度

    1回答

    我在我的項目中使用BDD(Behat)進行功能測試。 現在我在測試具有太多後臺作業的功能時遇到問題。例如: Scenario: Import issue at the first time Given I have a issue package "1602.zip" When I upload issue "1602.zip" Then I have to wait

    -1熱度

    1回答

    我只是命令行應用程序的入門者。我想知道如何將環境變量傳遞給在Windows 7機器上的命令行中運行的php腳本。 我想要做一些與此類似: QUEUE=notification VVERBOSE=1 php resque.php 感謝您的幫助..!

    0熱度

    1回答

    我開始使用php-resque(https://github.com/chrisboulton/php-resque)以及php和mysql服務器。我看到工作人員發現「MySQL服務器已經消失」的錯誤。 工作排隊代碼: if ($request->command == 'custom_script') { //error_log("before queue"); Resque

    1熱度

    2回答

    我安裝這個擴展http://www.yiiframework.com/extension/yii-resque/ [email protected]:/path/to/protected$ ./yiic rresque start Yii command runner (based on Yii v1.1.13) Usage: ./yiic <command-name> [parameters

    0熱度

    1回答

    PHP-Resque工人可以從一些腳本開始像 passthru("nohup php " . __RESQUE_BIN__ . " >> " . __RESQUE_LOG__ . " 2>&1 &"); 但我怎麼暫停它們,或者從一個PHP阻止他們腳本?