Spring Data Redis 1.1 M1(里程碑版本)和 1.0.5(维护版本)是 Spring Data 项目在 Redis 数据访问支持方面的两个历史发布版本
Spring Data Redis 1.1 M1(里程碑版本)和 1.0.5(维护版本)是 Spring Data 项目在 Redis 数据访问支持方面的两个历史发布版本,发布于约 2013 年底至 2014 年初(具体为 2013年12月左右)。
- 1.0.5是 1.0.x 系列的最后一个稳定维护版本,主要包含 bug 修复、小幅度性能优化及对 Redis 2.6+ 特性(如 Lua 脚本执行、连接池兼容性)的增强支持。
- 1.1 M1是 1.1 版本的首个里程碑版,引入了多项新特性,例如:
- 更完善的 Reactive 支持雏形(虽完整 Reactive API 在后续 2.x 中才成熟);
- 对 Redis Cluster 的初步适配增强;
RedisTemplate和StringRedisTemplate的 API 细化与泛型改进;- 更灵活的序列化策略配置(如
GenericJackson2JsonRedisSerializer的早期演进); - 对 Lettuce 客户端(当时仍以 Jedis 为主)的实验性集成铺垫。
⚠️ 注意:这两个版本早已EOL(End-of-Life),不再受官方支持。当前推荐使用 Spring Data Redis 3.x(对应 Spring Boot 3.x + Jakarta EE 9+ + Redis 7+),并基于 Lettuce 客户端,具备完整的响应式支持、连接池管理、SSL/TLS、自动重连等现代能力。
<!-- 示例:Maven 中已过时的旧依赖声明(仅作历史参考,切勿用于新项目) --><dependency><groupId>org.springframework.data</groupId><artifactId>spring-data-redis</artifactId><version>1.0.5.RELEASE</version></dependency>Spring Data Redis 1.1 M1 and 1.0.5 Released
I am pleased to announce the first milestone release of Spring Data Redis 1.1!
Downloads | JavaDocs | Reference Documentation | Changelog
Highlights include:
Support for several new Redis 2.6 commands and options Support for Redis 2.6 scripting Connection pool enhancementsThere is also a new GA release, Spring Data Redis 1.0.5!
Downloads | JavaDocs | Reference Documentation | Changelog
Spring Data Redis 1.0.5 is a maintenance release containing a few bug fixes and minor enhancements. See the Changelog for more information.
For more information about Spring Data Redis please see the home page for a live sample and webinar recording.
We look forward to your feedback on the forum or in the issue tracker.
comments powered by Disqus
