grails 1.3.9アプリケーションでのehcacheのデフォルト値は何ですか?特に、クエリキャッシュ値に興味があります。postgresのpsqlを使用していくつかの行を削除しましたが、変更がアプリに反映されていません。ehcache.xmlファイルをconfディレクトリに追加していません。grailsアプリを再起動しても、データはレポートに表示されます。回避策として削除できるキャッシュファイルはありませんか?
更新:次のehcache.xml構成ファイルを追加しました:
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd" >
<diskStore path="/tmp/ehcache_t2"/>
<cacheManagerEventListenerFactory class="" properties=""/>
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToLiveSeconds="120">
</defaultCache>
<cache name="org.hibernate.cache.UpdateTimestampsCache"
maxElementsInMemory="10000"
timeToIdleSeconds="300"
/>
<cache name="org.hibernate.cache.StandardQueryCache"
maxElementsInMemory="10000"
timeToIdleSeconds="30"
/>
</ehcache>
ただし、StandardQueryCacheのtimeToIdleSeconds="30"も機能していません。