* @copyright walkor * @link http://www.workerman.net/ * @license http://www.opensource.org/licenses/mit-license.php MIT License */ return [ 'default' => [ 'host' => get_env('CACHE_HOSTNAME', '127.0.0.1'), 'password' => get_env('CACHE_PASSWORD', null), 'port' => (int)get_env('CACHE_HOSTPORT',6379), 'database' => get_env('CACHE_SELECT', 0), 'prefix' => 'redis_', 'expire' => 0, ], ];