2011-02-28 25 views
0

我想顯示在我的系統中添加到我的主頁的業務計數,但我不想每次都執行選擇查詢。CodeIgniter中的靜態變量機制

當新業務添加管理員將刷新該計數時,它只會發生一次初始化該業務統計全局變量。

在CodeIgniter中有這樣做嗎?

回答

0

你既可以寫到一個文件或使用Query caching

// Turn caching on 
$this->db->cache_on(); 
$query = $this->db->query("SELECT * FROM mytable"); 

// Turn caching off for this one query 
$this->db->cache_off(); 
$query = $this->db->query("SELECT * FROM members WHERE member_id = '$current_user'"); 

// Turn caching back on 
$this->db->cache_on(); 
$query = $this->db->query("SELECT * FROM another_table");