**配置缓存**
在 `config.ini.php` 添加以下配置,如果已经存在,请按需修改。
~~~
//缓存 file 或 redis
$config['cache_drive'] = 'file';
//文件缓存前缀
$config['cache_prefix'] = 'domain_';
//redis缓存配置,仅当cache_drive为redis时有效
$config['cache_redis']['host'] = "127.0.0.1";
$config['cache_redis']['port'] = 6379;
//redis缓存前缀
$config['cache_redis']['prefix'] = '';
~~~