I can\'t understand what\'s the difference between Laravel queue:work and Laravel queue:listen
I can see that:
The
queue:workArtisan command includes a--daemonoption for forcing the queue worker to continue processing jobs without ever re-booting the framework. This results in a significant reduction of CPU usage when compared to the queue:listen command:As you can see, the
queue:workjob supports most of the same options available toqueue:listen. You may use the php artisan helpqueue:workjob to view all of the available options.
https://laravel.com/docs/5.1/queues#running-the-queue-listener