zoukankan      html  css  js  c++  java
  • springboot---redis缓存的使用

    1、下载redis安装包,解压到电脑

    2、启动redis

    3、springboot  application.properties中配置redis缓存

    spring.redis.host=127.0.0.1  //redis的地址
    spring.redis.port=6379  //端口
    //密码,默认为空
    spring.redis.password=
    # Redis服务器连接密码(默认为空)
    spring.redis.password=

    # 连接池最大连接数(使用负值表示没有限制)
    spring.redis.pool.max-active=8

    # 连接池最大阻塞等待时间(使用负值表示没有限制)
    spring.redis.pool.max-wait=-1

    # 连接池中的最大空闲连接
    spring.redis.pool.max-idle=8

    # 连接池中的最小空闲连接
    spring.redis.pool.min-idle=0

    # 连接超时时间(毫秒)
    spring.redis.timeout=0
     

     使用:

    1、

    RedisSerializer redisSerializer = new StringRedisSerializer();
    @Autowired
    private RedisTemplate<Object, Object> redisTemplate;

    2、方法体中使用:
     @Override
        public Page<Product> getProductListByPage(int page, String productType, int count, Sort sort) {
            redisTemplate.setKeySerializer(redisSerializer);  //序列化
            Page<Product> product= (Page<Product>) redisTemplate.opsForValue().get("getProduct");  //从缓存中获取数据
            if (product==null){
                synchronized (new Object()){
                    if (product==null){
                        Specification<Product> specification=pageableTool.specifucation(productType);
                        Pageable pageable = PageRequest.of(page, count, sort);
                        product= productRepository.findAll(specification, pageable);
                        redisTemplate.opsForValue().set("getProduct",product);  //将数据写入redis缓存中
                        return product;
                    }
                }
            }
            return product;
        }
    

      3、实体类必须实现 Serializable (redis包自带的)

      




  • 相关阅读:
    Node开发--->10_Node.js_mongoDB增删改查操作
    Node开发--->9_Node.js_数据库概述及环境搭建
    Node开发--->8_Node.js异步编程
    Node开发--->7_服务器端开发
    Node开发--->6_服务器端开发
    Node开发--->5_nodejs中的模块加载机制
    Node开发--->4_package.json文件
    Node开发--->3_node模块化开发之第三方模块
    Node开发--->2_node模块化开发之系统模块
    2015-7-22 积累的力量
  • 原文地址:https://www.cnblogs.com/qq1141100952com/p/9606914.html
Copyright © 2011-2022 走看看