Laravel Redis: PhpRedis

'redis' => [

    'client' => 'phpredis',

    // Rest of Redis configuration...
],
'default' => [
    'host' => env('REDIS_HOST', 'localhost'),
    'password' => env('REDIS_PASSWORD', null),
    'port' => env('REDIS_PORT', 6379),
    'database' => 0,
    'read_timeout' => 60,
],

supports the following additional connection parameters: persistent, prefix, read_timeout and timeout.

Laravel Redis: PhpRedis — Structure map

Clickable & Draggable!

Laravel Redis: PhpRedis — Related pages: