我正在尝试缓存从控制器调用的以下查询:
def approvedCount = Book.countByApproved(true, [cache: true])
Book
我通过添加为类启用了二级缓存
static mapping = {
cache true
}
到Book.groovy
. 我还配置了以下内容DataSource.groovy
hibernate {
cache.use_second_level_cache = true
cache.use_query_cache = true
cache.region.factory_class = 'net.sf.ehcache.hibernate.EhCacheRegionFactory'
}
在同一个文件中,我通过添加块启用logSql=true
了查询日志记录。dataSource
每次加载页面时,Book.countByApproved(true)
都会记录查询,所以我假设这意味着没有从查询缓存中检索结果?我在本地运行所有内容,因此不会丢失缓存,因为缓存的查询结果已失效(由另一个用户的操作)。