标签:pen web tis 重复 记录 reac sel png delete
<select id="querySuppliers" flushCache="true" useCache="false" resultType="cn.com.ebidding.web.yzPurchaseMain.dao.model.QueryYzResultModel">
select t1.id id,t2.company_name name
from lib_suppliers t1, sys_company t2
where t1.is_deleted = ‘0‘
and t2.is_deleted = ‘0‘
and t1.company_id = t2.id
and t1.agent_id = #{agentId}
and t1.id in
<foreach item="item" index="index" collection="ids" open="(" separator="," close=")">
#{item}
</foreach>
</select>
总结:
(1) 当为select语句时:
flushCache默认为false,表示任何时候语句被调用,都不会去清空本地缓存和二级缓存。
useCache默认为true,表示会将本条语句的结果进行二级缓存。
(2) 当为insert、update、delete语句时:
flushCache默认为true,表示任何时候语句被调用,都会导致本地缓存和二级缓存被清空。
useCache属性在该情况下没有。
标签:pen web tis 重复 记录 reac sel png delete
原文地址:https://www.cnblogs.com/peterpoker/p/9417086.html