黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

CodeIgniter 頁面緩存

codeigniter 頁面緩存

 

緩存頁面將提高頁面加載速度。如果頁面被緩存,那么它將以完全呈現(xiàn)??的狀態(tài)存儲(chǔ)。下次當(dāng)服務(wù)器收到緩存頁面的請(qǐng)求時(shí),會(huì)直接發(fā)送給請(qǐng)求的瀏覽器。

緩存文件存儲(chǔ)在 application/cache 文件夾中??梢栽诿宽摰幕A(chǔ)上啟用緩存。在啟用緩存時(shí),我們需要設(shè)置時(shí)間,直到它需要保留在緩存文件夾中,超過該時(shí)間將自動(dòng)刪除。

 

啟用緩存

可以通過在任何控制器的方法中執(zhí)行以下行來啟用緩存。

$this->output->cache($n);

其中 $n 是 分鐘數(shù),您希望頁面在刷新之間保持緩存狀態(tài)。

 

禁用緩存

緩存文件在過期時(shí)會(huì)被刪除,但是當(dāng)您想手動(dòng)刪除它時(shí),您必須禁用它。您可以通過執(zhí)行以下行來禁用緩存。

// deletes cache for the currently requested uri 
$this->output->delete_cache();
  
// deletes cache for /foo/bar 
$this->output->delete_cache('/foo/bar');

 

示例

創(chuàng)建一個(gè)名為 cache_controller.php 的控制器并將其保存在 application/controller/cache_controller.php

 
   class cache_controller extends ci_controller { 
	
      public function index() { 
         $this--->output->cache(1); 
         $this->load->view('test'); 
      }
		
      public function delete_file_cache() { 
         $this->output->delete_cache('cachecontroller'); 
      } 
   } 
?>

創(chuàng)建一個(gè)名為 test.php的視圖文件并將其保存在 application/views/test.php

 

 
    
       
      codeigniter view example 
   
	
    
      codeigniter view example 
   
	

更改 application/config/routes.php 中的 routes.php 文件,為上述控制器添加路由,并在文件末尾添加以下行。

$route['cachecontroller'] = 'cache_controller'; 
$route['cachecontroller/delete'] = 'cache_controller/delete_file_cache';

在瀏覽器中輸入以下 url 以執(zhí)行示例。

http://yoursite.com/index.php/cachecontroller

訪問上述 url 后,您將看到將在 application/cache 文件夾中創(chuàng)建一個(gè)緩存文件。要?jiǎng)h除文件,請(qǐng)?jiān)L問以下 url。

http://yoursite.com/index.php/cachecontroller/delete

下一節(jié):codeigniter 頁面重定向

codeigniter 教程

相關(guān)文章