springboot redis lettuce 是哪个版本
时间: 2024-04-19 11:03:38 浏览: 358
SpringBoot整合Lettuce redis过程解析
Spring Boot 对应的 Redis Lettuce 版本取决于你使用的 Spring Boot 版本。以下是一些常见的 Spring Boot 版本对应的 Redis Lettuce 版本:
- Spring Boot 2.5.x:Lettuce 6.1.x
- Spring Boot 2.4.x:Lettuce 5.3.x
- Spring Boot 2.3.x:Lettuce 5.2.x
- Spring Boot 2.2.x:Lettuce 5.1.x
- Spring Boot 2.1.x:Lettuce 5.0.x
你可以在 Spring Boot 的官方文档中查找版本之间的兼容性信息。在你的项目中,如果使用 Maven 或 Gradle 等构建工具,只需要在依赖中指定 Spring Boot 和 Lettuce 的版本,就可以使用它们提供的 Redis 功能了。
阅读全文