程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 讓CodeIgniter數據庫緩存自動過期的處理的方法

讓CodeIgniter數據庫緩存自動過期的處理的方法

編輯:關於PHP編程

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 函數替換為

復制代碼 代碼如下: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;
}

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;
}

這樣,在需要開啟緩存的地方,由以前的 $this→db→cache_on(); 改為
復制代碼 代碼如下:$this→db→cache_on($SEC);
$SEC 為緩存過期時間,以秒為單位。 如 $this→db→cache_on(60);表示緩存60秒後過期。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved