laravel / horizon

Dashboard and code-driven configuration for Laravel queues.
https://laravel.com/docs/horizon
MIT License
3.84k stars 645 forks source link

Possibility to run via database without using redis #1371

Closed felipeArnold closed 8 months ago

felipeArnold commented 8 months ago

Hello, I would like to check the possibility of using the larave horizon package via the database, without having to use redis in the application, is there a possibility of using the same QUEUE_CONNECTION=database service?

crynobone commented 8 months ago

Horizon can only be used with Redis at the moment.

joelharkes commented 7 months ago

@crynobone is all redis logic abstracted in seperate classes? is it possible to build my own driver?

It seems like it is: https://github.com/search?q=repo%3Alaravel%2Fhorizon%20Redis&type=code

I could try to make my own driver perhaps