Grails 1.3.9应用程序中的EHCache默认值

时间:2012-08-05 02:20:34

标签: hibernate grails ehcache default-value

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”也不起作用。

1 个答案:

答案 0 :(得分:1)

Grails将在conf目录中查找ehcache.xml。如果没有找到,它将使用类路径中的那个,看一下ehcache-core.jar。您将看到一个名为 ehcache-failsafe.xml 的文件,您可以在其中找到:

<defaultCache
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="true"
            maxElementsOnDisk="10000000"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"
            /> 

要使用查询缓存,您必须已在Datasource.groovy中配置:

hibernate {
    cache.use_second_level_cache=true
    cache.use_query_cache=true
    cache.provider_class='org.hibernate.cache.EhCacheProvider'
}

虽然像@GreyBeardedGeek指出的那样,但EhCache是​​一个直写缓存。它只会缓存通过hibernate及其二级缓存操作的对象。如果在数据库中编写sql查询,则不会在缓存中缓存对象。

要更深入地了解它,请查看herehere