队列的好处:不阻塞程序运行,比如中间件,可以使用队列,不耽误程序返回数据的时间
创建队列需要使用的表
php artisan queue:table
php artisan migrate
php artisan queue:failed-table
php artisan migrate
会生成 jobs 和failed_jobs 表
查看队列运行情况
php artisan queue:listen --queue=default
参考文档:https://laravelacademy.org/post/22009
标签:laravel,jobs,队列,queue,failed,artisan,使用,php From: https://www.cnblogs.com/gooo/p/17468516.html