Daud khan
Daud khan

Reputation: 2509

Should we need run queue listen command every time when we push jobs into Laravel queue?

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

Answers (1)

poldixd
poldixd

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

Related Questions