【Ibatis】(十四)、cacheModel详解

cacheModel的属性值等于指定的cacheModel元素的name属性值。属性cacheModel定义查询mapped statement的缓存。每一个查询mapped statement可以使用不同或相同的cacheModel。

Xml代码 收藏代码
  1. <cacheModelid="product-cache"imlementation="LRU">
  2. <flushIntervalhours="24"/>
  3. <flushOnExecutestatement="insertProduct"/>
  4. <flushOnExecutestatement="updateProduct"/>
  5. <flushOnExecutestatement="deleteProduct"/>
  6. <propertyname=”size”value=”1000”/>
  7. </cacheModel>
  8. <statementid=”getProductList”parameterClass=”int”
  9. cacheModel=”product-cache”>
  10. select*fromPRODUCTwherePRD_CAT_ID=#value#
  11. </statement>

上面例子中,“getProductList”的缓存使用WEAK引用类型,每24小时刷新一次,或当更新的操作发生时刷新。

你可能感兴趣的:(ibatis)