代码很简单
$mem = $this->memcache->get("memche_".$_SESSION['userid']."_page_".$page);
if(empty($mem)){
// to make another query and save the data to memcache
}
else {
// to get it from memcache
}
但是现在没有数据,但是如果我 print_r($mem); 缓存不为空 我明白了
a:0:{}
这通过了 if 语句if(empty())