首页
社区
文档
日志
登入
注册
文 档
开始
目录结构
配置文件
常量
视图
控制器
文件上传
自动加载类文件
路由
图片验证码
函数
缓存
数据模型
基本操作
数据添加
数据删除
数据更新
数据查询
where条件
自动验证
数据分页
子查询
原生SQL语句的使用
数据缓存
连接Sqlite
内 文 索 引
## 文件缓存 生存时间为假,则永久有效 FC($file,$data=null,$t=0); // $file:文件名 // $data:要缓存的数据 // $t:生存时间 $data = FC($key); // 获取缓存 $result = FC($key,$data); // 设置缓存 ## redis 缓存 该方法必须设置生存时间,默认是600秒 RC($key,$data=null,$t=0); // $key:缓存键名 // $data:要缓存的数据 // $t:生存时间 $data = RC($key); // 获取缓存 $result = RC($key,$data,100); // 设置缓存 ## memcached 缓存 MC($key,$data=null,$t=0); // $key:缓存键名 // $data:要缓存的数据 // $t:生存时间 $data = MC($key); // 获取缓存 $result = MC($key,$data,100); // 设置缓存 ## S 方法 采用配置文件的 CACHE_MOD 值(0:文件方式,1:redis,2:memcached) S($cache,$data=null,$time=0); // $cache 缓存键名或是文件路径 // $data 要缓存的数据 // $time 生存时间 $data = S($cache); // 获取缓存 $result = S($key,$data,100); // 设置缓存