laravel framework – rabbitmq message queue (using laravel-queue-rabbitmq)

Reference documentation: https://learnku.com/docs/laravel/8.x/queues/9398 https://packagist.org/packages/vladimir-yuldashev/laravel-queue-rabbitmq 1. Composer installs laravel-queue-rabbitmq. When installing, pay attention to the laravel version corresponding to the application package. composer require vladimir-yuldashev/laravel-queue-rabbitmq 2. In the config/app.php file, add in providers: VladimirYuldashev\LaravelQueueRabbitMQ\LaravelQueueRabbitMQServiceProvider::class, 3. Add the following configuration to the connections array in the app/config/queue.php configuration file ‘rabbitmq’ => [ ‘driver’ => ‘rabbitmq’, ‘dsn’ => […]