22 lines
548 B
PHP
22 lines
548 B
PHP
<?php
|
|
return [
|
|
'default' => [
|
|
'host' => 'redis://127.0.0.1:6379',
|
|
'options' => [
|
|
'auth' => '222222',
|
|
'db' => 0,
|
|
'prefix' => '',
|
|
'max_attempts' => 5,
|
|
'retry_seconds' => 5,
|
|
],
|
|
// Connection pool, supports only Swoole or Swow drivers.
|
|
'pool' => [
|
|
'max_connections' => 5,
|
|
'min_connections' => 1,
|
|
'wait_timeout' => 3,
|
|
'idle_timeout' => 60,
|
|
'heartbeat_interval' => 50,
|
|
]
|
|
],
|
|
];
|