Laravel Horizon Not Compatible With Redis Cluster
Laravel Horizon doesn't work with Redis cluster & multiple shards. Use Laravel queues instead, but be aware of potential deadlocks if using MySQL < 8.0.
You sure you will go with Laravel horizon? In some cases, you shouldn't. Especially when you use Redis cluster. Horizon doesn't work with Redis cluster Horizon doesn't work with Redis cluster if it has multiple shards. But this is not mentioned in the doc. You will notice it when you increase number of shards of Redis cluster, or when you find this issue. As a workaround, I tried hash tag keys, but Laravel horizon still didn't work alongside Redis cluster with mutiple shards. Laravel queues work with Redis cluster? On the other hand, queues of Laravel seems working with R...