Connecting redis cluster using Laravel giving no connection available in the pool
I want to connect redis cluster from Laravel but I am getting No connections available in the pool. My databaase.php looks like 'redis' => [ 'client' => env('REDIS_CLIENT', 'predis'), 'clusters' => [ 'default' => [ [ 'host' => env('REDIS_HOST', '127.0.0.1'),…