1

I use Laravel Horizon. And I really didn't understand from the documentation.

Should I not use the config/queue.php now?

On a production server, can I delete the supervisor settings for standart Laravel queue because I am now using the Horizon supervisor settings?

1 Answers1

1

You still need queue.php. Horizon is still based on Queue. Horizon augments Laravel's queue with additional features [1]. It comes with a dashboard and requires Redis as your queue driver.

In terms of configuring of your supervisor, yes, it is a replacement. queue:work and horizon:work basically does the same thing. So you should delete queue:work supervisor configuration and continue using Horizon supervisor.

Some references you might be interested in:

sykez
  • 2,015
  • 15
  • 14