我正在使用 Grails 2.1.0。我一直在尝试验证/分析我的 L2 缓存。现在,我怀疑休眠/缓存设置是否正确。
• 我在conf\DataSource.grooy 中的休眠设置中启用了generate_statistics。
hibernate {
generate_statistics = true
cache.use_second_level_cache = true
cache.use_query_cache = true
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
format_sql = true
use_sql_comments = true
}
• 我在域映射中启用了缓存。
package com.att.failbox.log.cause
class LogCauseMemento {
Date dateCreated
static mapping = {
version false
id generator: 'assigned'
table 'log_cause'
cache: true
}
}
• 我在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="java.io.tmpdir"/>
<cacheManagerEventListenerFactory class="" properties=""/>
<defaultCache
eternal="false"
timeToLiveSeconds="3600"
overflowToDisk="false"
diskPersistent="false"
/>
<cache name="com.att.failbox.log.cause.LogCauseMemento"
maxElementsInMemory="100000"
eternal="true"
/>
</ehcache>
• 但是,当我尝试使用“stats.getSecondLevelCacheRegionNames()”验证 L2 缓存时,我只得到“StandardQueryCache, UpdateTimestampsCache”。
import org.hibernate.stat.Statistics
class DomainProfilerService {
def sessionFactory
def displayStatistics() {
Statistics stats = sessionFactory.getStatistics()
def names = stats.getSecondLevelCacheRegionNames()
names.each(){ println it }
}
}