Hibernate一级缓存、二级缓存以及查询缓存的关系
转载自http://blog.csdn.net/maoyeqiu/article/details/50209893
前两天总结了一下二级缓存和查询缓存的关系,但是又有一个新的问题,就是查询缓存缓存到二级缓存的数据,在第三次(第一次缓存中没有数据,查询数据库将对应的ID值存入到二级缓存中去,第二次如果是同一个Session那么将会把数据一级缓存中的数据返回,如果不是同一个Session而是同一个sessionfactory,那么将会把二级缓存中的数据返回,同时将数据放入到一级缓存中去)获取的时候,不使用查询缓存的方法,而是直接使用一级缓存的方法,能不能将缓存的数据获取到呢,我们现在验证一下。
首先开启一级缓存(默认)、二级缓存和查询缓存
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE hibernate-configuration PUBLIC
- "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
- "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
- <hibernate-configuration>
- <session-factory>
- <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
- <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/hibernatedemo</property>
- <property name="hibernate.connection.password">root</property>
- <property name="hibernate.connection.username">root</property>
- <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
- <property name="show_sql">true</property>
- <property name="hbm2ddl.auto">create</property>
- <property name="hibernate.cache.provider_class">org.hibernate.cache.EhCacheProvider</property>
- <property name="hibernate.cache.use_query_cache">true</property>
- <!-- 开启二级缓存,其实hibernate默认就是开启的,这里显示的指定一下 -->
- <property name="hibernate.cache.use_second_level_cache">true</property>
- <property name="hibernate.generate_statistics">true</property>
- <mapping class="hibernate.test.dto.DepartmentEntity"></mapping>
- </session-factory>
- </hibernate-configuration>
用到的缓存类
- package hibernate.test.dto;
- @Entity
- @Table(name = "DEPARTMENT", uniqueConstraints = {
- @UniqueConstraint(columnNames = "ID"),
- @UniqueConstraint(columnNames = "NAME") })
- @Cache(usage=CacheConcurrencyStrategy.READ_ONLY, region="department")
- public class DepartmentEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- @Column(name = "ID", unique = true, nullable = false)
- private Integer id;
- @Column(name = "NAME", unique = true, nullable = false, length = 100)
- private String name;
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- }
启动查询缓存将返回的实体存入到二级缓存中去
- //此方法向数据库中存入三条数据
- storeData();
- Session session = HibernateUtil.getSessionFactory().openSession();
- session.beginTransaction();
- //开启查询缓存, query.setCacheable(true);开启查询缓存
- Query query = session.createQuery("select s from DepartmentEntity s");
- query.setCacheable(true);
- List<DepartmentEntity> names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
执行的结果:
hibernate: select department0_.ID as ID0_, department0_.NAME as NAME0_ from DEPARTMENT department0_
Human Resource
Humanne
Jhon
3
我们可以看到,产生了一条查询语句,将三个实体的名字输出,放入二级缓存的数量是3,都是没有问题的。这里比较容易犯的一个错误是查询的结果并不是实体,而是名字或者是其他属性,比如sql我们这么写:select s.name from DepartmentEntity s。存入二级缓存的数据是0,也就是没有存入到二级缓存中去。
再次调用上述方法:
- //开启查询缓存, query.setCacheable(true);开启查询缓存
- Query query = session.createQuery("select s from DepartmentEntity s");
- query.setCacheable(true);
- List<DepartmentEntity> names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- //同一个Session中再次查询,不会发出SQL语句到数据库
- query = session.createQuery("select s from DepartmentEntity s");
- query.setCacheable(true);
- names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
执行的结果:
Hibernate: select department0_.ID as ID0_, department0_.NAME as NAME0_ from DEPARTMENT department0_
Human Resource
Humanne
Jhon
3
Human Resource
Humanne
Jhon
3
0
我们可以看到只产生了一条数据库查询语句,第二次直接从缓存中获取(注意,第二次调用的时候依然要写quey.setCacheable(true); ,我们模拟的是同一个方法的多次调用,不然的会产生数据库查询),那么问题来了,这个缓存指的是一级缓存还是二级缓存呢,我们看执行的结果二级缓存的命中是0,也就是说这里并没有用到二级缓存而是直接使用了一级缓存,前提是在同一个Session的情况下,在同一个session下执行的结果都会首先缓存到一级缓存中去,那么我们开一个新的Session会有什么样的不同结果呢
- //开启查询缓存, query.setCacheable(true);开启查询缓存
- Query query = session.createQuery("select s from DepartmentEntity s");
- query.setCacheable(true);
- List<DepartmentEntity> names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- //同一个Session中再次查询,不会发出SQL语句到数据库
- query = session.createQuery("select s from DepartmentEntity s");
- quey.setCacheable(true);
- names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
- Session anotherSession = HibernateUtil.getSessionFactory().openSession();
- anotherSession.beginTransaction();
- query = anotherSession.createQuery("select s from DepartmentEntity s");
- query.setCacheable(true);
- names = query.list();
- for (Iterator<DepartmentEntity> it = names.iterator(); it.hasNext();) {
- String name = it.next().getName();
- System.out.println(name);
- }
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
执行结果:
- Hibernate: select department0_.ID as ID0_, department0_.NAME as NAME0_ from DEPARTMENT department0_
- Human Resource
- Humanne
- Jhon
- 3
- Human Resource
- Humanne
- Jhon
- 3
- 0
- Human Resource
- Humanne
- Jhon
- 3
- 3
我们看到运行的结果,三次执行都只是放入二级缓存的实例3个,也就是说二级缓存中只有三个实例。由于二级缓存是sessionfactory级别的当开启查询缓存将数据放入的二级缓存的时候是不受开了几个session影响的,所以尽管我们上边开启了2个session但是依旧是在二级缓存中有3个实体。这里还有一个问题是查询缓存的key值是如何定义的呢,导致了开启了3次查询缓存而只存入3条数据,如果key值不同的话,那么肯定是会存入9条数据,关于这个问题大家可以参考,这里。由于二级缓存是sessionfactory级别的,因此会直接将二级缓存中的数据取出,并存入到一级缓存中去。
我们在sql中只是查询实体的名字,我们来看一下查询缓存是如何缓存的
- //开启查询缓存, query.setCacheable(true);开启查询缓存
- ,Query query = session.createQuery("select s.name from DepartmentEntity s");
- query.setCacheable(true);
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
- //同一个Session中再次查询,不会发出SQL语句到数据库
- query = session.createQuery("select s.name from DepartmentEntity s");
- query.setCacheable(true);
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
- Session anotherSession = HibernateUtil.getSessionFactory().openSession();
- anotherSession.beginTransaction();
- query = anotherSession.createQuery("select s.name from DepartmentEntity s");
- query.setCacheable(true);
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCachePutCount());
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
执行结果:
Hibernate: select department0_.NAME as col_0_0_ from DEPARTMENT department0_
0
0
0
0
0
0
从结果上我们可以看到只有一个数据库查询,然后是六个0,前两个0是没有将数据存入到二级缓存中去,中间两个0并且没有sql数据库查询说明,数据从缓存中获取,而且是一级缓存中的数据,后两个0我们重新开启了一个session,同样没有数据库查询,也就说是调用了二级缓存中的数据,也就说明了查询缓存也是sessionfactory级别的。
我们现在来验证一下我们刚才提出的问题,直接用load获取数据
- DepartmentEntity department = (DepartmentEntity) session.load(DepartmentEntity.class, new Integer(1));
- System.out.println(HibernateUtil.getSessionFactory().getStatistics().getSecondLevelCacheHitCount());
执行结果:
0
从结果来看,没有产生数据库查询二级缓存的命中是0,也就是说数据是从一级缓存中获取的,这就验证了我们一开始提到的答案。
总结:
1、一级缓存是session级别的,二级缓存和查询缓存都是sessionfactory级别的,查询缓存和二级缓存是一起来使用的
2、任何sql执行都会存入到同一个session的一级缓存中去
3、同时开启查询缓存和二级缓存,可以在不同session间共享缓存的结果
4、二级缓存缓存的是实体,不是属性
5、查询缓存的结果如果只是属性,那么查询缓存中存储的是id和属性的值,如果是实体的集合,那么查询缓存存储的只是实体的id,对应的实体会存储到二级缓存中去。
6、不同session间返回数据的顺序是,二级缓存先将数据返回,然后将数据存入本session的一级缓存中去,以便下次调用时的使用
Hibernate一级缓存、二级缓存以及查询缓存的关系的更多相关文章
- 说说自己对hibernate一级、二级、查询、缓存的理解。
说说自己对hibernate一级.二级.查询.缓存的理解. 2016-03-14 21:36 421人阅读 评论(0) 收藏 举报 分类: web开发(19) 版权声明:本文为博主原创文章,未经博 ...
- ThinkPHP缓存技术(S(),F(),查询缓存,静态缓存)
直接查看原网址 https://blog.csdn.net/u010081689/article/details/47976271
- hibernate缓存机制详细分析(一级、二级、查询缓存,非常清晰明白)
本篇随笔里将会分析一下hibernate的缓存机制,包括一级缓存(session级别).二级缓存(sessionFactory级别)以及查询缓存,当然还要讨论下我们的N+1的问题. 随笔虽长,但我相信 ...
- Hibernate第十二篇【二级缓存介绍、缓存策略、查询缓存、集合缓存】
Hibernate二级缓存介绍 前面我们已经讲解过了一级缓存,一级缓存也就是Session缓存,只在Session的范围内有效-作用时间就在Session的作用域中,范围比较小 Hibernate为我 ...
- Hibernate中 一 二级缓存及查询缓存(2)
缓存:缓存是什么,解决什么问题? 位于速度相差较大的两种硬件/软件之间的,用于协调两者数据传输速度差异的结构,均可称之为缓存Cache.缓存目的:让数据更接近于应用程序,协调速度不匹配,使访问速度更 ...
- Hibernate中 一 二级缓存及查询缓存(1)
最近趁有空学习了一下Hibernate的缓存,其包括一级缓存,二级缓存和查询缓存(有些是参照网络资源的): 一.一级缓存 一级缓存的生命周期和session的生命周期一致,当前sessioin ...
- 【Hibernate】 二级缓存及查询缓存
一.Hibernate的二级缓存 1.1 类缓存区特点 缓存的是对象的散装的数据. 图一 Hibernate的二级缓存的散装数据 1.2 集合缓存区的特点: 缓存的是对象的id.需要依赖类缓冲区的配置 ...
- hibernate--一级和二级缓存(使用Ehcache)以及查询缓存
https://blog.csdn.net/u012411414/article/details/50483185 有一下几点需要理清才行: 一级缓存是session缓存 session关闭就小时 二 ...
- Hibernate-ORM:16.Hibernate中的二级缓存Ehcache的配置
------------吾亦无他,唯手熟尔,谦卑若愚,好学若饥------------- 本篇博客讲述Hibernate中的二级缓存的配置,作者将使用的是ehcache缓存 一,目录 1.二级缓存的具 ...
- (十二)mybatis 查询缓存
目录 什么是查询缓存 图解查询缓存 一级缓存 二级缓存 禁用二级缓存 刷新缓存 二级缓存应用场景 二级缓存局限性 什么是查询缓存 mybatis 在查询数据的时候,会将数据存储起来,下次再次查询相同的 ...
随机推荐
- C/S程序的一般流程和基本socket函数
一.基于TCP协议的网络程序 下图是基于TCP协议的客户端/服务器程序的一般流程: 服务器调用socket().bind().listen()完成初始化后,调用accept()阻塞等待,处于监听端口的 ...
- 使用Spring boot开发RestFul 风格项目PUT/DELETE方法不起作用
在使用Spring boot 开发restful 风格的项目,put.delete方法不起作用,解决办法. 实体类Student @Data public class Student { privat ...
- Java:多线程,线程池,用Executors静态工厂生成常用线程池
一: newSingleThreadExecutor 创建一个单线程的线程池,以无界队列方式运行.这个线程池只有一个线程在工作(如果这个唯一的线程因为异常结束,那么会有一个新的线程来替代它.)此线程池 ...
- php excel类 phpExcel使用方法介绍
phpExcel操作excel可以方便的加入图片,支持jpg gif png格式. 下载地址:http://www.codeplex.com/PHPExcel 下面是总结的几个使用方法 include ...
- 2. 解题报告~买卖股票的最佳时机 II
原题地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/1/array/22/ 给定一个数组, ...
- svn导出历史版本
svn导出历史某一个版本,有时候想拷贝出项目某个版本的代码,又不希望覆盖现在的代码,需要用到导出历史版本 1.浏览历史版本 鼠标移到项目上右击显示: 2.选择显示日志,出现版本历史记录: 3.选 ...
- 【Linux】VMware中为CentOS设置静态IP(非动态获取IP)
在VMware上安装好Linux后,默认设置的动态IP,每次启动的IP都不同,远程连接挺费劲的. 于是,需要设置静态的IP,至少我从远程工具连接上去方便多了.另外,为了安装一些软件,也需要访问互联网. ...
- Logstash5.3借助临时字段修改@timestamp为北京时间,方便按天生成output文件
$more config/first-pipeline.conf input { beats { port => " } } filter { if [type] == "s ...
- asp.net 获取客户端IP
一.名词 首先说一下接下来要讲到的一些名词. 在Web开发中,我们大多都习惯使用HTTP请求头中的某些属性来获取客户端的IP地址,常见的属性是REMOTE_ADDR.HTTP_VIA和HTTP_X_F ...
- bootstrap中模态框的大小设置
<!-- 大模态框的调节 --> <button type="button" class="btn btn-primary" data-tog ...