SpringBoot系列—Redis(十七)

个人博客:haichenyi.com。感谢关注

  前面一篇说到了spring boot自带的缓存SimpleCache,我们也聊到了他的底层实际上就是HashMap,并且这个缓存是放在内存当中的,这样弊端也是有的,比如:内存大小,当服务器关闭之后,缓存就没了等等。

简介

  实际开发中,一般使用缓存中间件:Redis,EHCache,MemCache等等,今天,我们就来聊聊,经常听到的——Redis。

  Redis 是一个开源(BSD许可)的,内存中的数据结构存储系统,它可以用作数据库、缓存和消息中间件。 它支持多种类型的数据结构,如 字符串(strings), 散列(hashes), 列表(lists), 集合(sets), 有序集合(sorted sets) 与范围查询, bitmaps, hyperloglogs 和 地理空间(geospatial) 索引半径查询。 Redis 内置了 复制(replication),LUA脚本(Lua scripting), LRU驱动事件(LRU eviction),事务(transactions) 和不同级别的 磁盘持久化(persistence), 并通过 Redis哨兵(Sentinel)和自动 分区(Cluster)提供高可用性(high availability)——来自官方介绍

  不去追究原理,我们可以这样理解Redis:

  • 支持多种数据类型,redis支持set,zset,list,hash,string这五种数据类型,操作方便。
  • 作为一个内存数据库,最担心的,就是万一机器死机宕机,数据就会消失掉。redis使用RDB和AOF做数据的持久化存储。主从数据同时,生成rdb文件,并利用缓冲区添加新的数据更新操作做对应的同步。
  • 与服务器解耦,缓存是一个单独的服务器,当我们项目重启的时候,缓存依然存在。
  • 我们只用的话,它就是给我们提供了一系列方法的接口,我们只用调用它的API即可。

用法

  第一步,添加启动器:


    org.springframework.boot
    spring-boot-starter-data-redis

  第二步,配置你的服务器地址,不配置的话,默认是本地:配置信息一样在 自动配置类——data包——redis包——RedisProperties类 里面去找

#指定redis服务器地址,指定的是本地
spring.redis.host=127.0.0.1

  第三步,添加了redis的配置类,当数据库添加复杂数据的时候,也能以Json的格式正常显示。

@Configuration
@EnableCaching
public class RedisConfig extends CachingConfigurerSupport{
@Bean
    public RedisTemplate redisTemplate(RedisConnectionFactory factory) {
        RedisTemplate template = new RedisTemplate<>();
        RedisSerializer redisSerializer = new StringRedisSerializer();
        Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class);
        ObjectMapper om = new ObjectMapper();
        om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
        jackson2JsonRedisSerializer.setObjectMapper(om);

        template.setConnectionFactory(factory);
        //key序列化方式
        template.setKeySerializer(redisSerializer);
        //value序列化
        template.setValueSerializer(jackson2JsonRedisSerializer);
        //value hashmap序列化
        template.setHashValueSerializer(jackson2JsonRedisSerializer);
        return template;
    }
}

  第四步,正常写接口,在service层里面,自己去把数据写进缓存里面,

package com.haichenyi.springboottask.service;

import com.haichenyi.springboottask.Provider;
import com.haichenyi.springboottask.mapper.ProviderMapper;
import com.haichenyi.springboottask.utils.RedisClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

/**
 * @Desc
 * @Auther 海晨忆
 * @Time 2019/11/6
 */
@Service
public class ProviderService {
    @Autowired
    ProviderMapper providerMapper;

    @Autowired
    RedisClient redisClient;

    public Provider getProviderById(Integer pid) {
        Provider provider = (Provider) redisClient.get(pid);
        if (provider != null) {
            return provider;
        }
        Provider provider1 = providerMapper.getProviderByPid(pid);
        redisClient.set(pid, provider1);
        return provider1;
    }
}

  如上代码,我们通过id获取一个Provider,我们先从缓存去取,如果,取不到,说明缓存没有,那么,我们就去从数据库去取,取到之后,再把这条数据放进缓存里面。

  就是上一篇讲默认缓存的注解的功能,redis里面需要我们自己去实现。

  这里的 RedisClient 类,是自己封装的redis使用的类,至于redis怎么使用,redis的中文官网的命令页面写的很清楚。

  记得本地电脑装一个Redis服务。然后再本地装一个redis可视化工具。

你可能感兴趣的:(SpringBoot系列—Redis(十七))