We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011a0d4 commit 600cfd0Copy full SHA for 600cfd0
README.md
@@ -89,6 +89,14 @@ For Lumen usage the service provider should be registered manually as follow in
89
$app->register(VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class);
90
```
91
92
+## Consuming Messages
93
+
94
+There are two ways of consuming messages.
95
96
+1. `queue:work` command which is Laravel's built-in command. This command utilizes `basic_get`.
97
98
+2. `rabbitmq:consume` command which is provided by this package. This command utilizes `basic_consume` and is more performant than `basic_get` by ~2x.
99
100
## Testing
101
102
Setup RabbitMQ using `docker-compose`:
0 commit comments