mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 23:12:49 +08:00
12 lines
183 B
PHP
12 lines
183 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
'host' => '127.0.0.1',
|
||
|
|
'port' => 6379,
|
||
|
|
'password' => '',
|
||
|
|
'database' => 0,
|
||
|
|
'timeout' => 3.0,
|
||
|
|
'local_cache' => true,
|
||
|
|
];
|