【Redis十周年】版本号的发展

从redis的1st commit到今天的最新版(5.0.4),redis已经走过了整整十年,下面让我们看下这十年来Redis的版本发布的情况:

版本 时间 新特性 备注
1st commit 2009.03 从github的commit记录中获取的时间
1.0 2009.09
2.0 2010.09
3.0.0 2015-04-01 1、增加了集群功能
2、......
从2014-2-11的Redis 3.0.0 Beta 1,到2015-04-01的3.0.0 release,中间beta了8个版本,rc了6个版本
4.0.0 2017-07-14 1、模块,通过外部模块实现功能扩
2、......
5.0.0 2018-10-17 1、全新的数据类型:Streams
2、集群管理器从Ruby(redis-trib.rb)移植到C代码的redis-cli
3、不再使用slave,用replic代替
4、......
1、最新版:5.0.4 (2019-03-18)
2、经历了6个rc版本才正式发布release版

参考资料:

1、https://raw.githubusercontent.com/antirez/redis/5.0/00-RELEASENOTES

2、https://raw.githubusercontent.com/antirez/redis/4.0/00-RELEASENOTES

3、https://raw.githubusercontent.com/antirez/redis/3.0/00-RELEASENOTES

4、https://code.google.com/archive/p/redis/downloads?page=1

你可能感兴趣的:(【Redis十周年】版本号的发展)