首先找到配置文件
项目根目录/application/config.php
找到 cache 配置项
'cache' => [
// 驱动方式
'type' => 'redis',
// 缓存保存目录
'path' => CACHE_PATH,
// 缓存前缀
'prefix' => '',
//主机地址
'host' => '127.0.0.1',
//端口
'port' => 6379,
//密码
'password' => '输入自己设置的密码',
//默认使用0号redis数据库
'select' => 0,
// 缓存有效期 0表示永久缓存
'expire' => 0,
],
在控制器中使用时需要引入Cache类
use think\Cache;
调用redis的方法示例
Cache::set('name','张三');