标签:
查询缓存是建立在二级缓存基础之上的,所以与二级缓存特性相似,是共享的,适合修改不是很频繁的数据 查询缓存不是默认开启的,需要设置 1、在cfg文件中配置 <property name="cache.use_query_cache">true</property> 2、在代码中进行设置 query.setCacheable(true);
Hibernate 性能优化之查询缓存
原文地址:http://www.cnblogs.com/liuwt365/p/4223577.html