Skip to content

Commit 33b7c83

Browse files
authored
Merge pull request vyuldashev#470 from mortenhauberg/no-support-for-multiple-queues
Document missing support for multiple queues
2 parents 9f6b340 + 8bdad7c commit 33b7c83

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -533,10 +533,9 @@ $app->register(VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServic
533533

534534
There are two ways of consuming messages.
535535

536-
1. `queue:work` command which is Laravel's built-in command. This command utilizes `basic_get`.
536+
1. `queue:work` command which is Laravel's built-in command. This command utilizes `basic_get`. Use this if you want to consume multiple queues.
537537

538-
2. `rabbitmq:consume` command which is provided by this package. This command utilizes `basic_consume` and is more
539-
performant than `basic_get` by ~2x.
538+
2. `rabbitmq:consume` command which is provided by this package. This command utilizes `basic_consume` and is more performant than `basic_get` by ~2x, but does not support multiple queues.
540539

541540
## Testing
542541

src/Console/ConsumeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class ConsumeCommand extends WorkCommand
1111
protected $signature = 'rabbitmq:consume
1212
{connection? : The name of the queue connection to work}
1313
{--name=default : The name of the consumer}
14-
{--queue= : The names of the queues to work}
14+
{--queue= : The name of the queue to work. Please notice that there is no support for multiple queues}
1515
{--once : Only process the next job on the queue}
1616
{--stop-when-empty : Stop when the queue is empty}
1717
{--delay=0 : The number of seconds to delay failed jobs (Deprecated)}

0 commit comments

Comments
 (0)