$this ->db->start_cache(); |
$this ->db->select( 'field1' ); //缓存此查询 |
$this ->db->stop_cache(); |
$this ->db->get( 'tablename' ); |
//Generates: SELECT `field1` FROM (`tablename`) |
$this ->db->select( 'field2' ); |
$this ->db->get( 'tablename' ); |
//Generates: SELECT `field1`, `field2` FROM (`tablename`) |
$this ->db->flush_cache(); //清空缓存,以下查询不会存在SELECT `field1` |
$this ->db->select( 'field2' ); |
$this ->db->get( 'tablename' ); |
//Generates: SELECT `field2` FROM (`tablename`) |