redis 3.x 4.x 5x等高级版本支持的spring客户端版本

spring data redis 2.2.x版本以上开始支持redis 3.x 4.x 5.x等高级版本,这里使用2.3.3.RELEASE版本

<dependency>
  <groupId>org.springframework.data</groupId>
  <artifactId>spring-data-redis</artifactId>
  <version>2.3.3.RELEASE</version>
</dependency>

POM信息: https://github/spring-projects/spring-data-redis/blob/2.3.3.RELEASE/pom.xml
spring-data-redis版本说明: https://docs.spring.io/spring-data/redis/docs/current/reference/html/#new-features

注:

  1. redis3.x及以上版本spring-data-redis支持的最低版本为 2.2.0.RELEASE,此时jedis版本为3.1.0
  2. jedis支持2.x 3.x 以及更高版本是在 3.0.1开始, https://github/redis/jedis/tree/jedis-3.0.1

更多推荐

spring data redis 和 redis高级版本对应关系