一级缓存是 MyBatis 的基础缓存,粒度是一次会话,也被称为 SqlSession 级别的缓存。每当我们执行查询时,查询结果会被存放在一级缓存中。如果后续进行相同的查询,MyBatis 将直接从一级缓存中获取结果,而不是再次查询数据库。
一级缓存是永远开启的,不能关闭。当我们进行 commit()
、close()
或 clearCache()
操作时,一级缓存会被清空。
二级缓存是 MyBatis 的高级缓存,也被称为 mapper 级别的缓存。这个缓存是跨 SqlSession 的,这意味着多个 SqlSession 可以共享这个缓存。要开启二级缓存,你需要在映射文件中添加 <cache />
标签。
例如:
<mapper namespace="com.example.MyMapper">
<cache />
<!-- Your other mappings... -->
</mapper>
你可以通过 <cache>
标签的属性来配置你的二级缓存,例如 eviction(淘汰策略)、flushInterval(刷新间隔)、size(缓存大小)和 readOnly(是否只读)。
例如:
<mapper namespace="com.example.MyMapper">
<cache
eviction="FIFO"
flushInterval="60000"
size="512"
readOnly="false"
/>
<!-- Your other mappings... -->
</mapper>
执行 <insert>
、<update>
或 <delete>
操作会清除对应命名空间下的所有二级缓存。你可以在你的映射语句中添加 flushCache="true"
或 flushCache="false"
来更改这个行为。
例如:
<select id="selectPerson" resultType="Person" flushCache="true">
SELECT * FROM PERSON WHERE ID = #{id}
</select>
在这个例子中,执行 selectPerson
查询后,MyBatis 将清除缓存。
<update id="updatePerson" parameterType="Person" flushCache="false">
UPDATE PERSON SET NAME = #{name}, AGE = #{age} WHERE ID = #{id}
</update>
在这个例子中,执行 updatePerson
更新操作后,MyBatis 不会清除缓存。
如果你希望缓存数据永久保留,可以通过设置 flushInterval
属性为 0
或者不设置这个属性来实现。
例如:
<mapper namespace="com.example.MyMapper">
<cache
eviction="FIFO"
flushInterval="0"
size="512"
readOnly="false"
/>
<!-- Your other mappings... -->
</mapper>
或者:
<mapper namespace="com.example.MyMapper">
<cache
eviction="FIFO"
size="512"
readOnly="false"
/>
<!-- Your other mappings... -->
</mapper>
在这两个例子中,缓存的数据会一直保留,直到执行了 <insert>
、<update>
、<delete>
或其他清除缓存的操作。
mapper的缓存配置中设置缓存实现类
<cache
type="com.feidian.sidebarTree.utils.MybatisCache"
eviction="LRU"
size="100"
readOnly="false"
/>
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;
@Component
public class ApplicationContextHolder implements ApplicationContextAware {
private static ApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext ctx) throws BeansException {
applicationContext = ctx;
}
/**
* Get application context from everywhere
*
* @return
*/
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
/**
* Get bean by class
*
* @param clazz
* @param <T>
* @return
*/
public static <T> T getBean(Class<T> clazz) {
return applicationContext.getBean(clazz);
}
/**
* Get bean by class name
*
* @param name
* @param <T>
* @return
*/
@SuppressWarnings("unchecked")
public static <T> T getBean(String name) {
return (T) applicationContext.getBean(name);
}
}
import org.apache.ibatis.cache.Cache;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.data.redis.core.RedisCallback;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
public class MybatisCache implements Cache {
private static final Logger logger = LoggerFactory.getLogger(MybatisCache.class);
private final ReadWriteLock readWriteLock = new ReentrantReadWriteLock();
private final String id; // cache instance id
private RedisTemplate redisTemplate;
public MybatisCache(String id) {
if (id == null) {
throw new IllegalArgumentException("Cache instances require an ID");
}
this.id = id;
}
@Override
public String getId() {
return id;
}
/**
* Put query result to redis
*
* @param key
* @param value
*/
@Override
@SuppressWarnings("unchecked")
public void putObject(Object key, Object value) {
try {
RedisTemplate redisTemplate = getRedisTemplate();
ValueOperations opsForValue = redisTemplate.opsForValue();
opsForValue.set(key.toString().getBytes(), value);
logger.debug("Put query result to redis");
}
catch (Throwable t) {
logger.error("Redis put failed", t);
}
}
/**
* Get cached query result from redis
*
* @param key
* @return
*/
@Override
public Object getObject(Object key) {
try {
RedisTemplate redisTemplate = getRedisTemplate();
ValueOperations opsForValue = redisTemplate.opsForValue();
logger.debug("Get cached query result from redis");
return opsForValue.get(key);
}
catch (Throwable t) {
logger.error("Redis get failed, fail over to db", t);
return null;
}
}
/**
* Remove cached query result from redis
*
* @param key
* @return
*/
@Override
@SuppressWarnings("unchecked")
public Object removeObject(Object key) {
try {
RedisTemplate redisTemplate = getRedisTemplate();
redisTemplate.delete(key);
logger.debug("Remove cached query result from redis");
}
catch (Throwable t) {
logger.error("Redis remove failed", t);
}
return null;
}
/**
* Clears this cache instance
*/
@Override
public void clear() {
RedisTemplate redisTemplate = getRedisTemplate();
redisTemplate.execute((RedisCallback) connection -> {
connection.flushDb();
return null;
});
logger.debug("Clear all the cached query result from redis");
}
/**
* This method is not used
*
* @return
*/
@Override
public int getSize() {
return 0;
}
@Override
public ReadWriteLock getReadWriteLock() {
return readWriteLock;
}
private RedisTemplate getRedisTemplate() {
if (redisTemplate == null) {
redisTemplate = ApplicationContextHolder.getBean("redisTemplate");
}
return redisTemplate;
}
}