|
发表于 2015-2-4 15:20:34
|
显示全部楼层
本帖最后由 Closer 于 2015-2-4 15:25 编辑
PHP复制代码
$this->load->driver('cache', array('adapter' => 'file'));
if(!$userinfo = $this->cache->get('userinfo_' . $user_id)){
$userinfo = $this->Accounts_Model->get(array('id' => $user_id));
$this->cache->save('userinfo_' . $user_id, $userinfo, time() + 3600);
} 复制代码 |
|