Mybatis:缓存(一级,二级,自定义)的使用

    科技2024-11-06  9

    Mybatis:缓存的使用

    缓存的认知

    缓存定义:存在内存中的临时数据

    缓存的目的:将经常查询的数据放在缓存中,用户不用从磁盘上(关系型数据库数据文件)查询

    缓存的使用数据:经常查询并且不经常改变的数据。

    备注:在mybatis中分为一级缓存和二级缓存

    一级缓存(本地缓存)

    简介

    与数据库同一次会话期间查询到的数据会放在本地缓存中(如果获取相同的数据,直接从缓存中拿,没必须再去查询数据库)(在mybatis中默认开启)

    实体

    public class User { private int id; private String name; private String pwd; public User(){ } public User(int id, String name, String pwd){ this.id = id; this.name = name; this.pwd =pwd; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPwd() { return pwd; } public void setPwd(String pwd) { this.pwd = pwd; } @Override public String toString() { return "com.minjiang.pojo.User{" + "id=" + id + ", name='" + name + '\'' + ", pwd='" + pwd + '\'' + '}'; } }

    接口

    public interface UserMapper { /** * 条件查询 * @param id * @return */ public User selectById(@Param("id") int id); }

    映射文件

    <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.minjiang.mapper.UserMapper"> <select id="selectById" parameterType="_int" resultType="user"> select * from mybatis.user where id = #{id} </select> </mapper>

    工具类

    public class MyBatisUtils { private static String resource = "mybatis-config.xml"; private static InputStream inputStream; private static SqlSessionFactory sqlSessionFactory; static { try { inputStream = Resources.getResourceAsStream(resource); sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); } catch (IOException e) { e.printStackTrace(); } } public static SqlSession getSession(){ SqlSession session = sqlSessionFactory.openSession(); return session; } }

    测试

    public class CacheTest02 { /** * 开启日志 * */ Logger logger = Logger.getLogger(CacheTest02.class); @Test public void selectById(){ SqlSession session = MyBatisUtils.getSession(); UserMapper mapper = session.getMapper(UserMapper.class); UserMapper mapper1 = session.getMapper(UserMapper.class); User user = mapper.selectById(1); User user1 = mapper1.selectById(1); System.out.println(user); System.out.println(user1); System.out.println(user == user1); //要记住关闭缓存,不然可能会无法使用 session.close(); } }

    结果

    可以通过显示的日志发现查询语句只执行了一次

    备注

    默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)

    为便于以后的维护建议显性表示

    一级缓存失败的四种情况

    1、sqlSession不同(每个sqlSession中的缓存相互独立)

    2、sqlSession相同,你要的查询条件不同(缓存会进行刷新)

    3、sqlSession相同,两次查询之间执行了增删改操作!(缓存会进行刷新)

    4、sqlSession相同,手动清除一级缓存

    清除一级缓存

    SqlSession session = MybatisUtils.getSession(); session.clearCache();

    关闭缓存

    SqlSession session = MybatisUtils.getSession(); session.close();

    二级缓存(全局缓存)

    简介

    基于namespace级别的缓存,一个名称空间,对应一个二级缓存;

    工作机制

    一个会话查询一条数据,这个数据就会被放在当前会话的一级缓存中;如果当前会话关闭了,这个会话对应的一级缓存就没了;但是我们想要的是,会话关闭了,一级缓存中的数据被保存到二级缓存中;新的会话查询信息,就可以从二级缓存中获取内容;不同的mapper查出的数据会放在自己对应的缓存(map)中;

    备注

    默认情况下,只启用了本地的会话缓存,它仅仅对一个会话中的数据进行缓存。 要启用全局的二级缓存,只需要在你的 SQL 映射文件(只作用于一个映射文件)中添加一行:

    <cache/>

    建议同时开启全局缓存 【mybatis-config.xml】(便于维护)

    <setting name="cacheEnabled" value="true"/>

    配置二级缓存

    1、开启全局缓存 【mybatis-config.xml】(官方文档规定)

    <setting name="cacheEnabled" value="true"/>

    2、在映射文件中配置(只作用于一个映射文件)

    <!-- 可通过Mybatis观看详细说明--> <cache eviction="FIFO" flushInterval="60000" size="512" readOnly="true"/>

    eviction可用的清除策略有:

    LRU – 最近最少使用:移除最长时间不被使用的对象。FIFO – 先进先出:按对象进入缓存的顺序来移除它们。SOFT – 软引用:基于垃圾回收器状态和软引用规则移除对象。WEAK – 弱引用:更积极地基于垃圾收集器状态和弱引用规则移除对象。

    flushInterval(刷新间隔)属性可以被设置为任意的正整数

    size(引用数目)属性可以被设置为任意正整数

    readOnly(只读)属性可以被设置为 true 或 false

    自定义二级缓存

    条件:使用第三方缓存实现–EhCache(可以通过百度或者是官方文档了解,不一一介绍)

    步骤

    1、导入依赖包

    <!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache --> <dependency> <groupId>org.mybatis.caches</groupId> <artifactId>mybatis-ehcache</artifactId> <version>1.1.0</version> </dependency>

    2、在SQL映射文件中填加

    <cache type="org.mybatis.caches.ehcache.EhcacheCache"/>

    3、编写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"> <!-- diskStore:为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下: user.home – 用户主目录 user.dir – 用户当前工作目录 java.io.tmpdir – 默认临时文件路径 --> <diskStore path="./tmpdir/Tmp_EhCache"/> <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"/> <!-- 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,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。 --> </ehcache>
    Processed: 0.049, SQL: 8