Hibernate缓存 查询缓存
网上说query.setCacheable(true)或criteria.setCacheable(true)`` 这两种方式的缓存命中率低,个人认为谈论这个“无卵用”;
我在测试的时候发现,上面的操作会受配置的限制,必须在配置文件中打开hibernate.cache.use_query_cache=true,之后setCacheable`才起作用;
查询缓存可以解决二级缓存的不足;它的作用范围也
...