Laravel中的异步队列

时间:2015-12-09 14:44:42

标签: php laravel asynchronous laravel-5 queue

我正在尝试实现排队,但结果不是异步 我已经应用了以下

         *(OSLongType *)(SRAM1)= 0;

然后应用以下命令     php工匠队列:表     php artisan migrate

然后运行

config/queue.php
'default' => env('QUEUE_DRIVER', 'database'),
    'connections' => [

    'sync' => [
        'driver' => 'sync',
    ],

    'database' => [
        'driver' => 'database',
        'table' => 'jobs',
        'queue' => 'default',
        'expire' => 60,
    ],
   ] 

这是功能

php artisan queue:listen

即使进程已经运行但它不是异步的,它等待命令完成以返回控制器中的响应

我按此顺序git the logs

SomethingController.php
   $model1 = new \App\Model1;
public function store(){
     Log::debug('before dispatch');
     $this->dispatch(new SendGiftCommand($model1));
     Log::debug('before dispatch');
     return true;
}



SendGiftCommand.php
{
    Log::debug('handle');
    SendGift::SendGiftAgedBased($this->model1);
    sleep(4);
    Log::debug('SendGiftCommand end');
}
SendGift.php
public static function SendGiftAgedBased(Model1 $model1){
  Log::debug('inside SendGiftAgedBased');
} 

它应该在Localhost上工作吗?

3 个答案:

答案 0 :(得分:6)

我遇到的问题与不是异步的作业有关,这对我有用:

  1. 修改 .env 并将 QUEUE_DRIVER 设置从同步更改为数据库(编辑配置/ queue.php 还不够)
  2. 重新启动您的流程

答案 1 :(得分:2)

为了让作业排队,作业类需要实现 Illuminate \ Contracts \ Queue \ ShouldQueue 界面 - 确保它是真的你的班级。

您可以在此处找到有关排队工作的更多信息:http://laravel.com/docs/5.1/queues#writing-job-classes

答案 2 :(得分:0)

使用此命令创建作业:

   php artisan make:job SendGiftCommand --queued    

请参阅此链接以定义作业:

 https://laravel.com/docs/5.1/queues#writing-job-classes

然后传递声明作业并以这种方式发送作业:

    $processGift = new sendGiftCommand($model1);
    $this->dispatch($processGift);

还可以进一步参考上面提到的链接上的Supervisor配置,以便持续监听队列或自动重启命令队列:监听它们是否失败。