laravel 5.4 + redis
If I use php artisan queue:listen, it will listen on the default queue.If I point the queue to php artisan queue:listen --queue a, then there will only be a queue a.Is there anyway to listen to the entire queue in laravel 5.4 if there are many queues?
php artisan queue:listen
php artisan queue:listen --queue a
I am afraid that you cannot listen to all the available queues without indicating which ones; however, you can use the option --queuefor multiple queues, for example:
--queue
php artisan queue:listen --queue a,b,c
Source: https://habr.com/ru/post/1676552/More articles:Filter nan rows in specific column - pythonWhy is Array.forEach running slower than the for () loop in Javascript? - performanceHow to make the drum handle of LESS files? - node.jsColumn that starts with - pythonlike hashmap using hashtable to store and retrieve an object - javaAdding a Lambda expression and working with Entity Framework - c #Linux heap allocation - cColored characters in the HTML header - cssDev App Server does not support App Engine Flexible Environment applications - javaWhat is the best way to manage an image saved in SQL for a website? - sqlAll Articles