zoukankan      html  css  js  c++  java
  • Spring Boot ---- 缓存相关

    Cache 缓存

    引入缓存依赖

    <!-- 引入 Spring 缓存依赖 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-cache</artifactId>
    </dependency>
    

    需要在启动类上开启注解 @EnableCaching

    注解(定义在方法上)

    名称 解释
    Cache 缓存接口,定义缓存操作
    CacheManager 缓存管理器,管理各种缓存组件
    @Cacheable 缓存注解(方法调用前生效)
    @CacheEvict 清空缓存(默认方法调用后)
    @CachePut 调用方法后更新缓存
    @EnableCaching 开启基于注解的缓存(在SpringBoot启动类上使用)
    @CacheConfig 统一配置本类的缓存注解的属性(类前使用)
    @Caching 组合多个Cache注解
    keyGenerator 缓存数据时key生成策略
    serialize 缓存数据时value序列化策略

    @Cacheable/@CacheEvict/@CachePut 主要参数

    名称 解释
    cacheNames/value 缓存空间名称(可指定多个)
    key 使用SpEL表达式指定key规则(默认组合所有参数)
    condition 缓存条件(true则缓存)
    unless 否定缓存条件(true则不缓存)
    allEntries(@CacheEvict ) 是否全部清空(默认false)
    beforeInvocation(@CacheEvict ) 执行方法前清空(默认false)

    SpEL 上下文数据

    名称 位置 描述 示例
    methodName root 方法名 #root.methodName
    method root 方法 #root.method.name
    target root 对象实例 #root.target
    targetClass root 对象的类 #root.targetClass
    args root 参数列表 #root.args[0]
    caches root 缓存列表 #root.cache[0].name
    argumentname 上下文 参数名或a0/p0 #id、#a0、#p0
    result 上下文 返回值 #result

    root 对象可省略,Spring 默认使用 root 对象的属性

    整合 Redis

    redis 默认安装完毕

    引入依赖

    <!-- 引入 Redis 依赖 -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-data-redis</artifactId>
    </dependency>
    

    配置redis

    spring:
    	redis:
    		host:xxx.xx.xx.xxx
    

    编写测试类

    @SpringBootTest
    public class Test {
        @Autowired
        UserMapper userMapper;
        
        @Autowired
        StringRedisTemplate stringRedisTemplate; // k-v都是字符串的
        
        @Autowired
        RedisTemplate redisTemplate; // k-v都是对象
        /**
         * 常见数据类型
         * String、list、set、hash、zset
         * stringRedisTemplate.opsForValue() ---- 字符串
         * stringRedisTemplate.opsForList() ---- 列表
         * stringRedisTemplate.opsForSet() ---- 集合
         * stringRedisTemplate.opsForHash ---- 散列
         * stringRedisTemplate.opsForZSet ---- 有序集合
         */
        @Test
        public void test() {
            /**
             * stringRedisTempalte.opsForValue().xxx();
             */
            // 保存
            stringRedisTemplate.opsForValue().append("mas", "hello");
            // 取出
            stringRedisTemplate.opsForValue().get("msg");
        }
    }
    

    Redis 命令参考Redis 命令

  • 相关阅读:
    解决在linux环境安装setuptools的相关错误
    sql根据最小值去重
    linux重新安装python
    python 进阶(转自http://python.jobbole.com/82633/)
    redis做消息列队
    下载安装windows版Redis
    vue-cli 结构
    vue-cli 安装
    [python]爬虫学习(三)糗事百科
    jquery基础
  • 原文地址:https://www.cnblogs.com/qq188380780/p/12602465.html
Copyright © 2011-2022 走看看