让CodeIgniter数据库缓存自动过期的处理的方法_php实例
程序员文章站
2022-04-30 16:28:46
...
CodeIgniter框架是一个非常小巧的PHP框架。CI自带数据库文件缓存,但按官方的说法,缓存设置后永不过期,除非你调用方法主动删除。
Cache files DO NOT expire. Any queries that have been cached will remain cached until you delete them.
感觉太弱智了,非常不方便。 修改一下db类,在开启缓存时设置一个过期时间,到期自动缓存自动失效。
1:CI database/DB_dirver.php 中 1021行 cache_on 函数替换为
2:CI database/DB_cache.php 中 90行 read 函数 if (FALSE === ($cachedata = read_file($filepath))) 一行前面加上
这样,在需要开启缓存的地方,由以前的 $this→db→cache_on(); 改为
$SEC 为缓存过期时间,以秒为单位。 如 $this→db→cache_on(60);表示缓存60秒后过期。
Cache files DO NOT expire. Any queries that have been cached will remain cached until you delete them.
感觉太弱智了,非常不方便。 修改一下db类,在开启缓存时设置一个过期时间,到期自动缓存自动失效。
1:CI database/DB_dirver.php 中 1021行 cache_on 函数替换为
复制代码 代码如下:
function cache_on($expire_time=0) //add parm expire time - 缓存过期时间
{
$this->cache_expire_time = $expire_time; //add by kenvin
$this->cache_on = TRUE;
return TRUE;
}
{
$this->cache_expire_time = $expire_time; //add by kenvin
$this->cache_on = TRUE;
return TRUE;
}
2:CI database/DB_cache.php 中 90行 read 函数 if (FALSE === ($cachedata = read_file($filepath))) 一行前面加上
复制代码 代码如下:
//判断是否过期 // cache_expire_time
if ( !file_exists($filepath) ) {
return false;
}
if ( $this->db->cache_expire_time > 0 && filemtime($filepath) db->cache_expire_time) {
return false;
}
if ( !file_exists($filepath) ) {
return false;
}
if ( $this->db->cache_expire_time > 0 && filemtime($filepath) db->cache_expire_time) {
return false;
}
这样,在需要开启缓存的地方,由以前的 $this→db→cache_on(); 改为
复制代码 代码如下:
$this→db→cache_on($SEC);
$SEC 为缓存过期时间,以秒为单位。 如 $this→db→cache_on(60);表示缓存60秒后过期。
上一篇: 分享一个搭建php版push服务器的流程
下一篇: vue+init失败怎么处理
推荐阅读
-
Laravel使用Caching缓存数据减轻数据库查询压力的方法_php实例
-
CodeIgniter框架数据库事务处理的设计缺陷和解决方案_php实例
-
CodeIgniter针对数据库的连接、配置及使用方法_php实例
-
让CodeIgniter数据库缓存自动过期的处理的方法_php实例
-
让CodeIgniter数据库缓存自动过期的处理的方法_PHP教程
-
让CodeIgniter数据库缓存自动过期的处理的方法_php实例
-
codeigniter数据库缓存自动过期处理方法
-
CI框架数据库查询缓存优化的方法_php实例
-
CodeIgniter启用缓存和清除缓存的方法_php实例
-
让CodeIgniter的ellipsize()支持中文截断的方法_php实例