dyc87112 / blog-comments

5 stars 1 forks source link

Spring Boot中的缓存支持(二)使用Redis做集中式缓存 | 程序猿DD #122

Open dyc87112 opened 6 years ago

dyc87112 commented 6 years ago

http://blog.didispace.com/springbootcache2/

上一篇介绍了在Spring Boot中如何引入缓存、缓存注解的使用、以及EhCache的整合。 虽然EhCache已经能够适用很多应用场景,但是由于EhCache是进程内的缓存框架,在集群模式下时,各应用服务器之间的缓存都是独立的,因此在不同服务器的进程间会存在缓存不一致的情况。即使EhCache提供了集群环境下的缓存

skyherot92 commented 6 years ago

为什么用redis做缓存的时候不用考虑序列化的事情呢

erisonlan commented 5 years ago

@skyherot92 为什么用redis做缓存的时候不用考虑序列化的事情呢

要的,不序列化会报错的,demo里面也是继承了序列化接口

yuemingming commented 5 years ago

这里使用了缓存之后在Redis中对应的数据结构是什么样子呢?能否麻烦讲解下。

situqingyun commented 5 years ago

楼主,码云上当下来的代码中没有redis的配置

hiwangzi commented 5 years ago
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-cache</artifactId>
</dependency>

依赖名称发生了变化,从👆上面改成了下面👇:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>