Redis
 sql >> Database >  >> NoSQL >> Redis

Predis con laravel 5.5 Nessuna connessione disponibile in piscina in Aggregate/RedisCluster.php:337

Questo sta funzionando nel nostro ambiente:

    'redis' => [
         'cluster' => true,

         'client' => 'predis',

         'options' => [
             'cluster' => 'redis',
             'parameters' => [
                 'scheme'   => env('REDIS_SCHEME', 'tcp'),
                 'host'     => env('REDIS_HOST', 'localhost'),
                 'password' => env('REDIS_PASSWORD', null),
                 'port'     => env('REDIS_PORT', 6379),
                 'database' => 0,
                 'timeout' => 15,
              ],
         ],

         'clusters' => [

             'default' => [
                 'scheme'   => env('REDIS_SCHEME', 'tcp'),
                 'host'     => env('REDIS_HOST', 'localhost'),
                 'password' => env('REDIS_PASSWORD', null),
                 'port'     => env('REDIS_PORT', 6379),
                 'database' => 0,
                 'timeout' => 15,
             ],
         ],
     ],

Sulla base delle informazioni trovate qui:https://github.com/nrk/predis/issues/480 - ma necessario anche per replicare tutti i valori di configurazione "predefiniti" nelle opzioni -> gruppo parametri

REDIS_HOST, punta all'endpoint di configurazione nel cluster redis di AWS elasticache.