codeigniter 資料庫快取

2021-05-25 07:37:29 字數 323 閱讀 2474

ci預設的cache_on 一旦開啟,永遠不失效,除非自己刪除。比較弱智。

ci database/db_dirver.php 中 1021行 cache_on 函式替換為

ci database/db_cache.php 中 90行 read 函式 if (false === ($cachedata = read_file($filepath))) 一行前面加上

在需要開啟資料庫快取的地方寫: $this→db→cache_on($sec); $sec 為需要快取的秒數。 0 為永不過期。 如 $this→db→cache_on(3); 表示快取3秒。3秒後自動失效。

Codeigniter資料庫操作

查詢 query this db query select from table result 返回物件陣列 data query result result array 返回資料 data query result array row 只返回一行物件陣列 data query row num ro...

codeigniter對資料庫的常用操作

查詢 query this db query select from table result 返回物件陣列 data query result result array 返回資料 data query result array row 只返回一行物件陣列 data query row num ro...

codeigniter自帶資料庫類使用方法說明

初始化資料庫類 依據你的資料庫配置載入並初始化資料庫類 複製 如下 this load database 被載入之後你可以在任何地方使用它。以物件形式返回查詢結果 複製 如下 query this db query select name,title,email from my table fore...