我正在尝试实现排队,但是结果不是异步的,并且我已经应用了以下内容
config/queue.php 'default' => env('QUEUE_DRIVER', 'database'), 'connections' => [ 'sync' => [ 'driver' => 'sync', ], 'database' => [ 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'expire' => 60, ], ]
然后应用以下命令php artisan queue:table php artisan migration
然后运行
php artisan queue:listen
这是功能
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'); }
即使该进程已运行,但仍未同步,它会等待命令完成以返回控制器中的响应
我按此顺序搅拌日志
[2015-12-09 16:28:42] local.DEBUG: before dispatch [2015-12-09 16:28:42] local.DEBUG: handle [2015-12-09 16:28:42] local.DEBUG: inside SendGiftAgedBased [2015-12-09 16:28:46] local.DEBUG: SendGiftCommand end [2015-12-09 16:28:46] local.DEBUG: after dispatch
它应该在Localhost上工作吗?
我也遇到同样的问题,即作业不是异步的,这对我有用:
编辑.env并将QUEUE_DRIVER设置从同步更改为数据库(仅编辑config / queue.php)
重新启动程序