准确来说这不算是坑,但骚不注意就掉进去了。
在使用laravel
队列时,有时候我们希望为他设定一个优先级,如:
php artisan queue:work --queue=high,low
这样,当我们的任务需要优先发送时,就可以通过指定队列名high
来优先发送。
dispatch((new Job)->onQueue('high'));
但是当你后续任务没有指定队列名(high
、low
)时,你的队列任务永远也不会执行。(比如我们在发送消息通知时)
<?php
namespace App\Notifications;
use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;
use Illuminate\Contracts\Queue\ShouldQueue;
class YourNotification extends Notification implements ShouldQueue
{
use Queueable;
}
你发现即使你按照文档说的,implements ShouldQueue
并且use Queueable
,该通知还是无法加入队列。
那是因为config\queuq.php
配置中,指定了默认的队列名为default
,所以所有的队列任务,如果没指定队列名时,默认是default
。
但是我们在启动队列进程时,只指定了high
和low
。当然不会生效。
解决办法:
1、修改configqueuq.php默认队列名为low或high
2、启动队列进程时添加default(–queue=high,default,low)