Laravel Horizon


About

The Laravel Horizon container is a pre-built queue runner with the sole purpose of executing your applications' background jobs. Differing from the PHP Worker, it's queue configuration is all handled through the Laravel Horizon Composer package. While it might require the Redis container and have more settings to adjust, its sophistication allows for showing a beautiful interface that allows you to keep track of how your queue workers are performing.

Use Cases

  • If you need to run background jobs in your application.
  • If you want to power your queue workers through Redis.
  • If you require more configuration for your queue workers.
  • If you want an interface to visualize and manage your queue workers.