队列调度说明.md 458 B

队列调度说明

  1. 监听队列 ``` php artisan queue:work --timeout=60 --tries=3 生产使用 php artisan queue:listen --timeout=60 --tries=3

nohup php artisan queue:listen --timeout=60 --tries=3 后台执行


2.队列监控

php artisan queue:work connection --daemon php artisan queue:work connection --daemon --sleep=3 php artisan queue:work connection --daemon --sleep=3 --tries=3

3.队列重启

php artisan queue:restart ```