>[info] 使用 sys\Memcache 类,需先安装 php_redis 扩展与 redis 数据库。
## 配置文件定义
`Memcache` 类的配置文件是独立的,在 `config` 目录的 `memcache.php` 文件里,默认内容如下:
> 你需要在该配置文件内填入你的数据库连接信息
~~~
// memcache 配置文件
return [
// 服务器地址
'hostname' => '127.0.0.1',
// 数据库连接端口
'hostport' => '11211',
// 数据库密码
'password' => '',
];
~~~