ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
在使用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,该通知还是无法加入队列。 但是我们在启动队列进程时,只指定了high和low。当然不会生效。 解决办法: 1、修改configqueuq.php默认队列名为low或high 2、启动队列进程时添加default(--queue=high,default,low)