データベースの操作にiBatisを使用しています。最近、キャッシュを構成することにより、一部の静的データフェッチのパフォーマンスを改善しようとしています。チャッシュは正しく構成され、機能しましたが、問題は、データに挿入/更新/削除が発生するたびにキャッシュデータをフラッシュすることです。カテゴリテーブルの構成は次のとおりです。
<cacheModel type="LRU" id="categoryCache" readOnly="true" serialize="false">
<flushOnExecute statement="insertCategory"/>
<flushOnExecute statement="updateCategory"/>
<flushOnExecute statement="deleteCategory"/>
<property name="size" value="1000"/>
</cacheModel>
<insert id="insertCategory"
parameterClass="com.uniplas.entity.master.beans.CategoryVO">
insert into categories (code, description)
values(#code:VARCHAR#,#description:VARCHAR#)
</insert>
<update id="updateCategory"
parameterClass="com.uniplas.entity.master.beans.CategoryVO">
update categories set description=#description:VARCHAR# where code=#code:VARCHAR#
</update>
<delete id="deleteCategory"
parameterClass="com.uniplas.entity.master.beans.CategoryVO">
delete from categories where code=#code:VARCHAR#
</delete>
<select id="selectCategory" resultMap="categoryResult"
parameterClass="java.util.Map" cacheModel="categoryCache">
select * from categories where 1=1
<dynamic>
<isNotEmpty property="categoryVO.code">
and code like #categoryVO.code:VARCHAR#
</isNotEmpty>
<isNotEmpty property="categoryVO.description">
and description like
#categoryVO.description:VARCHAR#
</isNotEmpty>
<isNotEmpty property="orderBy">
order by $orderBy$
</isNotEmpty>
</dynamic>
</select>
ここで問題となるのは、insertCategory / updateCategory / deleteCategoryステートメントのいずれかが実行されても、キャッシュがフラッシュされないことです。挿入/更新/削除の前に選択されたデータを保持します!
どこが悪いのか教えてください。