我使用memcache,在config中进行了cofigurated。一切正常,但我认为数据总是从db返回,而不是从缓存返回。 在CDBCommand 495字符串:
if(($result = $cache->get($cacheKey)) !== false) {
var_dump('test'); die;
Yii::trace('Query result found in cache', 'system.db.CDbCommand');
return $result[0];
}
但$result
始终为FALSE
。
我使用的这个查询:
$result = Yii::app()
->db
->cache(100)
->createCommand('SELECT COUNT(*) as count FROM wo_users')
->queryRow();
有什么问题?