今天做了一个Ibatis刷新缓存的测试, 我发现调用 SqlMapClient.flushDataCache("house_foreground.building_property_catch");后,它确实执行了刷新的工作...但是该刷新并没有向数据库发送任何请求,数据还是原来的数据!!!配置的缓存如下   <cacheModel type="LRU" id="building_property_catch" readOnly="true" serialize="false"  >
            <flushInterval hours="24"/> 
            <property name="size" value="1000"/>
         </cacheModel> 测试代码如下 List<Building> buildings = instance.getBuildingsByLetter("A");
for (Iterator iterator = buildings.iterator(); iterator.hasNext();) {
Building building = (Building) iterator.next();
System.out.println(building.getBuildingName());
}
        //这里我设置了断点,并且删除了一条数据
SqlMapConfig.getSqlMapInstance().flushDataCache("house_foreground.building_property_catch");
List<Building> building2 = instance.getBuildingsByLetter("A");
for (Iterator iterator = building2.iterator(); iterator.hasNext();) {
Building building = (Building) iterator.next();
System.out.println(building.getBuildingName());
}
打印的日志是
  DEBUG [main] - Cache 'house_foreground.building_property_catch': cache miss
DEBUG [main] - Created connection 7990655.
DEBUG [main] - {conn-100000} Connection
DEBUG [main] - {conn-100000} Preparing Statement:    select b.building_id , b.building_name     from building b    where b.building_letter = ? and b.issue = 1 and b.building_del_sign = 0    
DEBUG [main] - {pstm-100001} Executing Statement:    select b.building_id , b.building_name     from building b    where b.building_letter = ? and b.issue = 1 and b.building_del_sign = 0    
DEBUG [main] - {pstm-100001} Parameters: [A]
DEBUG [main] - {pstm-100001} Types: [java.lang.String]
DEBUG [main] - {rset-100002} ResultSet
DEBUG [main] - {rset-100002} Header: [building_id, building_name]
DEBUG [main] - {rset-100002} Result: [2, 怡美家园]
DEBUG [main] - {rset-100002} Result: [14, 阿尔法社区]
DEBUG [main] - {rset-100002} Result: [38, 骊龙园]
DEBUG [main] - {rset-100002} Result: [43, 茗筑]
DEBUG [main] - {rset-100002} Result: [53, 珺峰]
DEBUG [main] - {rset-100002} Result: [64, A-Z Town]
DEBUG [main] - {rset-100002} Result: [71, 2U·香花畦]
DEBUG [main] - {rset-100002} Result: [83, 10AM新坐标]
DEBUG [main] - {rset-100002} Result: [84, A派公寓]
DEBUG [main] - {rset-100002} Result: [87, 奥东18号]
DEBUG [main] - {rset-100002} Result: [89, 澳林春天(闻涛苑.澳林观邸)]
DEBUG [main] - {rset-100002} Result: [90, 澳洲康都]
DEBUG [main] - {rset-100002} Result: [110, 11STATION]
DEBUG [main] - {rset-100002} Result: [160, 禧福汇国际社区]
DEBUG [main] - {rset-100002} Result: [218, 昊天伟业嘉园]
DEBUG [main] - {rset-100002} Result: [221, 昊腾花园]
DEBUG [main] - {rset-100002} Result: [243, 昊天温泉家园]
DEBUG [main] - {rset-100002} Result: [256, 曦城国际]
DEBUG [main] - {rset-100002} Result: [272, 鑫融皓月]
DEBUG [main] - {rset-100002} Result: [322, 懿品阁]
DEBUG [main] - {rset-100002} Result: [423, 曦景长安]
DEBUG [main] - {rset-100002} Result: [456, 鑫顺苑]
DEBUG [main] - {rset-100002} Result: [471, 瞰都]
DEBUG [main] - {rset-100002} Result: [547, 阿曼寓所]
DEBUG [main] - {rset-100002} Result: [628, 馨领域]
DEBUG [main] - {rset-100002} Result: [634, 怡馨家园]
DEBUG [main] - {rset-100002} Result: [654, 艾瑟顿国际公寓]
DEBUG [main] - {rset-100002} Result: [663, 郦城]
DEBUG [main] - Cache 'house_foreground.building_property_catch': stored object 'com.xuan.house.bean.Building@13d28e3, com.xuan.house.bean.Building@476128, com.xuan.house.bean.Building@3b8b49, com.xuan.house.bean.Building@1359c1b, com.xuan.house.bean.Building@9be79a, com.xuan.hou...'
DEBUG [main] - Returned connection 7990655 to pool.
怡美家园
阿尔法社区
骊龙园
茗筑
珺峰
A-Z Town
2U·香花畦
10AM新坐标
A派公寓
奥东18号
澳林春天(闻涛苑.澳林观邸)
澳洲康都
11STATION
禧福汇国际社区
昊天伟业嘉园
昊腾花园
昊天温泉家园
曦城国际
鑫融皓月
懿品阁
曦景长安
鑫顺苑
瞰都
阿曼寓所
馨领域
怡馨家园
艾瑟顿国际公寓
郦城
DEBUG [main] - Cache 'house_foreground.building_property_catch': flushed
DEBUG [main] - Cache 'house_foreground.building_property_catch': retrieved object 'com.xuan.house.bean.Building@13d28e3, com.xuan.house.bean.Building@476128, com.xuan.house.bean.Building@3b8b49, com.xuan.house.bean.Building@1359c1b, com.xuan.house.bean.Building@9be79a, com.xuan.hou...'
怡美家园
阿尔法社区
骊龙园
茗筑
珺峰
A-Z Town
2U·香花畦
10AM新坐标
A派公寓
奥东18号
澳林春天(闻涛苑.澳林观邸)
澳洲康都
11STATION
禧福汇国际社区
昊天伟业嘉园
昊腾花园
昊天温泉家园
曦城国际
鑫融皓月
懿品阁
曦景长安
鑫顺苑
瞰都
阿曼寓所
馨领域
怡馨家园
艾瑟顿国际公寓
郦城请高手指点为什么会这样?  刷新缓存的意思不是再向数据库中索要新的数据吗?