Could you please share your best solution for run Laravel queue on production server?
For now I see next solution:
- First start queue:
php artisan queue:work >> /var/log/queue.log &
- Add to crontab:
10 2 * * * php artisan queue:restart
11 2 * * * php artisan queue:work >> /var/log/queue.log &
- In case of project update on server:
php artisan down
php artisan queue:restart
#do update
php artisan queue:work >> /var/log/queue.log &
php artisan up
But I'm worrying about high load case. What if some job will be stucked?
Maybe you have better solution?
from Newest questions tagged laravel-5 - Stack Overflow http://bit.ly/2WaqiBw
via IFTTT
Aucun commentaire:
Enregistrer un commentaire