在Ibatis引用缓存

1. 首先要 在SqlMapConfig.xml中配置缓存
   <settings
     cacheModelsEnabled="true" //设置为true
    enhancementEnabled="true"
    lazyLoadingEnabled="true"
/>

2.  配置*****SqlMap.xml

<cacheModel type="LRU" id="district-cache">
  <flushInterval hours="24"/>
  <property name="size" value="1000"/>
</cacheModel>

缓存的类型(type)

MEMORY      没有统一的对象重用模式的应用,或内存不足的应用。
     LRU         在较长的期间内,用户经常使用某些特定对象。
     FIFO        用户在短时间内持续引用特定的查询,而后很可能不再使用。


查询时使用缓存

<select id="select_district_ByProvince" cacheModel="district-cache" parameterClass="" resultMap="">

第一次使用时查询数据库并缓存,以后不会操作数据库


3 在相应的sqlMap.xml中加入一下代码

<cacheModel type="LRU" id="movie-cache" readOnly="false">
  <flushInterval hours="24"/>
  <property name="size" value="1000"/>
  <flushOnExecute statement="insert_movie"/>
  <flushOnExecute statement="update_movie"/>
  <flushOnExecute statement="delete_movie"/>
</cacheModel>

readOnly="false" 默认为true,readOnly=true时,为只读状态,不更新缓存,这样性能是最好的,这里设为false

当执行insert_movie,update_movie,delete_movie操作后就更新缓存。

hours="24"代表每24小时更新一次缓存



你可能感兴趣的:(xml,ibatis)