前端之家收集整理的这篇文章主要介绍了
php – Laravel使用不同的队列连接来调度Jobs,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用laravel 5.1,我正在使用调度
方法将作业推送到队列中.
但有两种工作,我已经创建了两个队列,并在sqs中有两个队列.
我该怎么做到这一点?
这对我有用.
//code to be used in the controller (taken from @jedrzej.kurylo above)
$job = (new SendReminderEmail($user))->onQueue('emails');
$this->dispatch($job);
我认为这会将作业发送到名为“emails”的队列.
要执行在“电子邮件”队列中分派的作业:
//Run this command in a new terminal window
PHP artisan queue:listen --queue=emails
原文链接:https://www.f2er.com/laravel/133403.html