Reputation: 2509
My question is that if I push jobs in Laravel queue then is I need to run php artisan queue:listen
command every time?
Upvotes: 1
Views: 680
Reputation: 1202
No. You have to run php artisan queue:listen
only once. If you push jobs in the queue your job has to be executed by the queue.
Run php artisan queue:listen
in the background with supervisor.
Upvotes: 3