您能否分享在生产服务器上运行Laravel queue的最佳解决方案?
现在我看到下一个解决方案:
php artisan queue:work >> /var/log/queue.log &
10 2 * * * php artisan queue:restart
11 2 * * * php artisan queue:work >> /var/log/queue.log &
php artisan down
php artisan queue:restart
#do update
php artisan queue:work >> /var/log/queue.log &
php artisan up
但是我担心高负载情况。如果某些工作会卡住怎么办?
也许您有更好的解决方案?