Mybatis-Study12-缓存

什么是缓存

  • 存在内存中的临时数据
  • 将用户经常查询的数据放在缓存中,用户去查询数据就不用从磁盘(关系型数据库数据文件)上查询,从缓存中查询,从而提高查询效率,解决了高并发系统的性能问题

为什么使用缓存

  • 减少和数据库的交互次数,减少系统开销,提高系统效率

什么样的数据能使用缓存

  • 经常查询并且不经常改变的数据

Mybatis缓存

  • Mybatis包含一个很强大的查询缓存特性,他可以定制和配置缓存,提高查询效率

  • Mybatis系统中默认定义了两级缓存:一级缓存和二级缓存

     		- 默认情况下,只有一级缓存开启(SqlSession级别缓存)
     		- 二级缓存需要手动开启和配置(namespace级别缓存)
     		- 为了提高扩展性,Mybatis定义了缓存接口Cache。我们可以通过定义Cache接口来定义二级缓存
    

一级缓存

  • 一级缓存也叫本地缓存

  • 一级缓存只存在于一个SqlSession内(就是测试类中的SqlSession,SqlSession如果关闭(SqlSession.close)则缓存就会被清理掉)

  • 与数据库同一次会话查询到的数据会放在本地缓存中

  • 测试

接口

 User getUserById(@Param("id") int id);

Mapper.xml

 <select id="getUserById" resultType="User" parameterType="int">
        select  * from user where id=#{id}
    </select>

测试类

   @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        System.out.println("==================");
        User user1=mapper.getUserById(1);
        System.out.println(user1);
        sqlSession.close();
    }

结果

在这里插入图片描述

一级缓存失效的情况

  • SqlSession不同
    @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        System.out.println("==================");
        User user1=mapper.getUserById(1);
        System.out.println(user1);
        sqlSession.close();


        System.out.println("==================");
        SqlSession sqlSession1=MybatisUtils.getSqlSession();
        UserMapper mapper1=sqlSession1.getMapper(UserMapper.class);
        User user2=mapper1.getUserById(1);
        System.out.println(user2);
        sqlSession.close();
    }

其中sqlSession和sqlSession1是不同的SqlSession
对比结果
在这里插入图片描述
我们发现不同的SqlSession中的缓存是相互独立的

  • SqlSession相同,执行查询的sql语句条件不同
   @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        System.out.println("==================");
        User user1=mapper.getUserById(2);
        System.out.println(user1);
        sqlSession.close();


    }

这里查询的是id为1和2的数据

在这里插入图片描述
我们发现如果当前缓存中不存在数据,我们就不能使用缓存

  • SqlSession相同,两次查询这之间执行了增删改操作

接口中增加方法

void updateUser(Map map);

mapper.xml

<update id="updateUser" parameterType="map">
        update user
        <set>
            <if test="name != null">
                name=#{name}
            </if>
        </set>
        where id=#{id}
    </update>

测试类

  @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        HashMap map=new HashMap();
        map.put("id",1);
        map.put("name","ser");
        mapper.updateUser(map);
        System.out.println("==================");
        User user1=mapper.getUserById(1);
        System.out.println(user1);
        sqlSession.close();
    }

结果

在这里插入图片描述
我们发现并没有从缓存中获取数据

增删改可能会对当前数据有影响,所以缓存会刷新

  • SqlSession相同,手动清除缓存
  @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        sqlSession.clearCache();
        User user1=mapper.getUserById(1);
        System.out.println(user1);
        sqlSession.close();


    }

sqlSession.clearCache();清除一级缓存

结果
在这里插入图片描述

二级缓存

  • 二级缓存也叫全局缓存,一级缓存作用域太低,所以需要二级缓存
  • 基于namespace级别的缓存,一个mapper命名空间,对应一个二级缓存

工作机制

  • 一个会话查询一条数据,该数据就会被放在当前会话的一级缓存中;
  • 如果当前会话关闭,该回话对应的一级缓存就会消失,当我们开启二级缓存,一级缓存中的数据就会保存到二级缓存
  • 新的会话查询信息就会从二级缓存中获取
  • 不同的mapper查出的数据会放在不同的二级缓存中

使用步骤

  • 开启二级缓存(全局缓存)【mybatis-config.xml】
<!--开启二级缓存-->
        <setting name="cacheEnabled" value="true"/>
  • 在mapper.xml中配置
    <!--eviction="FIFO"创建了一个输入输出流缓存 flushInterval="60000"每隔60秒刷新 readOnly="true"返回对象之能是只读 size="521"最多储存结果为521个-->
    <cache eviction="FIFO" flushInterval="60000" size="521" readOnly="true"></cache>
  • 测试
    所有实体类要实现序列化接口
    在这里插入图片描述

  • 测试类

 @Test
    public void test(){
        SqlSession sqlSession= MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        System.out.println("==================");
        User user=mapper.getUserById(1);
        System.out.println(user);
        System.out.println("==================");
        User user1=mapper.getUserById(1);
        System.out.println(user1);
        sqlSession.close();

        System.out.println("==================");
        SqlSession sqlSession1=MybatisUtils.getSqlSession();
        UserMapper mapper1=sqlSession1.getMapper(UserMapper.class);
        User user2=mapper1.getUserById(1);
        System.out.println(user2);
        sqlSession1.close();
    }
  • 结果

在这里插入图片描述
结论

  • 开启二级缓存,我们在同一个mapper下的查询,都可以在二级缓存中拿到数据
  • 查出的数据会默认先放到一级缓存,只有会话提交或关闭,才会保存到二级缓存

Ehcache缓存

使用ehcache缓存,要在mybatis-config.xml文件中开启二级缓存
然后在mapper.xml文件中

<!--导入ehcache缓存-->
    <cache type="org.mybatis.caches"/>

Ehcache缓存还可以自定义缓存
新建一个ehcache.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
         updateCheck="false">
    <!--
       diskStore:为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下:
       user.home – 用户主目录
       user.dir  – 用户当前工作目录
       java.io.tmpdir – 默认临时文件路径
     -->
    <diskStore path="java.io.tmpdir/Tmp_EhCache"/>
    <!--
       defaultCache:默认缓存策略,当ehcache找不到定义的缓存时,则使用这个缓存策略。只能定义一个。
     -->
    <!--
      name:缓存名称。
      maxElementsInMemory:缓存最大数目
      maxElementsOnDisk:硬盘最大缓存个数。
      eternal:对象是否永久有效,一但设置了,timeout将不起作用。
      overflowToDisk:是否保存到磁盘,当系统当机时
      timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
      timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
      diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
      diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
      diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
      memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
      clearOnFlush:内存数量最大时是否清除。
      memoryStoreEvictionPolicy:可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。
      FIFO,first in first out,这个是大家最熟的,先进先出。
      LFU, Less Frequently Used,就是上面例子中使用的策略,直白一点就是讲一直以来最少被使用的。如上面所讲,缓存的元素有一个hit属性,hit值最小的将会被清出缓存。
      LRU,Least Recently Used,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。
   -->
    <defaultCache
            eternal="false"
            maxElementsInMemory="10000"
            overflowToDisk="false"
            diskPersistent="false"
            timeToIdleSeconds="1800"
            timeToLiveSeconds="259200"
            memoryStoreEvictionPolicy="LRU"/>

    <cache
            name="cloud_user"
            eternal="false"
            maxElementsInMemory="5000"
            overflowToDisk="false"
            diskPersistent="false"
            timeToIdleSeconds="1800"
            timeToLiveSeconds="1800"
            memoryStoreEvictionPolicy="LRU"/>

</ehcache>
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

QQ星小天才

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值