1. 首页
  2. redis实践

Redis 5.0 正式发布!一网打尽所有新特性!

作为一统缓存江山的redis,正式发布了5.0稳定版(stable),激不激动,开不开森?Github链接:https://github.com/antirez/redis/releases/tag/5.0.0 ,让我们一起看看它带来了哪些振奋人心的新特性:

iwangdajinsuoyouxintexing_1.png

redis5.0 stable

官方列举特性如下:

  ======================================================
    Redis 5.0.0     Released Wed Oct 17 13:28:26 CEST 2018
    ======================================================

    what's new in Redis 5:

    1. The new Stream data type. https://redis.io/topics/streams-intro
    2. New Redis modules APIs: Timers, Cluster and Dictionary APIs.
    3. RDB now store LFU and LRU information.
    4. The cluster manager was ported from Ruby (redis-trib.rb) to C code
       inside redis-cli. Check `redis-cli --cluster help` for more info.
    5. New sorted set commands: ZPOPMIN/MAX and blocking variants.
    6. Active defragmentation version 2.
    7. Improvemenets in HyperLogLog implementations.
    8. Better memory reporting capabilities.
    9. Many commands with sub-commands now have an HELP subcommand.
    10. Better performances when clients connect and disconnect often.
    11. Many bug fixes and other random improvements.
    12. Jemalloc was upgraded to version 5.1
    13. CLIENT UNBLOCK and CLIENT ID.
    14. The LOLWUT command was added. http://antirez.com/news/123
    15. We no longer use the "slave" word if not for API backward compatibility.
    16. Differnet optimizations in the networking layer.
    17. Lua improvements:
        - Better propagation of Lua scripts to replicas / AOF.
        - Lua scripts can now timeout and get in -BUSY state in the replica as well.
    18. Dynamic HZ to balance idle CPU usage with responsiveness.
    19. The Redis core was refactored and improved in many ways.

Redis开源社区版新特性

下面我们对一些重要特性进行更深入的了解。

Streams

全新的数据类型:Streams。官方把这个当做是最重要的改进(The most important user facing improvement is without doubts the introduction
of the new general purpose data type after years: the streams.
)。而且官方提到在发版本的几个小时前还在修复streams的问题,所以官方也不敢保证release版本是否有一些比较严重的BUG(T T),官方还是建议大家在生产环境不要使用streams,这样可能会有更好的体验,扎心了(People not using the streams can have probably a better production-ready
experience with Redis 5)。

笔者接下来还会单独撰文剖析Streams,敬请关注。你可以把streams当做一个MQ,甚至把streams当做kafka都没问题!

cluster manager with c

redis终于还是抛弃了ruby,维护过redis3.x和redis4.x的都知道,主要依赖redis-trib.rb脚本,redis5.0彻底抛弃了它,将集群管理功能全部集成到完全用C写的redis-cli中。可以通过命令redis-cli --cluster help查看帮助信息。

LOLWUT

redis5.0新增的一个命令,官方对它的描述是:a piece of art inside a database command,翻译过来可以数据库命令中的一件艺术品(老外真幽默)。

这个方法源码注释如下:
This file implements the LOLWUT command. The command should do something
fun and interesting, and should be replaced by a new implementation at each new version of Redis。源码链接:https://github.com/antirez/redis/blob/5.0.0/src/lolwut5.c,有兴趣的同学可以看看redis作者在5.0版本中实现了些什么好玩的东西。

执行命令截图如下,这个命令纯属好玩:

iwangdajinsuoyouxintexing_2.png

LOLWUT example

Lua改进

lua脚本能更好的传播到replicas/AOF。replicas也就是以前的slave,大家都知道redis的slave事件前段时间闹的沸沸扬扬,现在redis官方都改称replicas了,并且申明除非为了API向后兼容,否则不再使用slave这个词(We no longer use the "slave" word if not for API backward compatibility.)。

lua脚本现在还能支持超时,并且可以在replica中进入BUSY状态。

动态HZ

以前redis版本的hz都是固定的,5.0将hz动态化是为了平衡空闲CPU的使用率和响应能力。当然这个是可配置的,只不过在5.0中默认是动态的,其对应的配置为:dynamic-hz yes

ZPOPMIN&ZPOPMAX

用法:ZPOPMIN|ZPOPMAX key [count]

作用是移除并返回sorted set中count个最低|最高得分,count默认值为1。

  127.0.0.1:6379> ZADD exam 98 "a1" 90 "a2" 78 "a3" 60 "a4" 58 "a5" 50 "a6"
    (integer) 6
    127.0.0.1:6379> zrange exam 0 -1
    1) "a6"
    2) "a5"
    3) "a4"
    4) "a3"
    5) "a2"
    6) "a1"
    # 移除两个最低得分
    127.0.0.1:6379> ZPOPMIN exam 2
    1) "a6"
    2) "50"
    3) "a5"
    4) "58"
    # 移除一个最低低分(没有指定COUNT参数,就是1)
    127.0.0.1:6379> ZPOPMIN exam 
    1) "a4"
    2) "60"
    # 移除3个后,exam只剩下两个元素
    127.0.0.1:6379> zrange exam 0 -1
    1) "a3"
    2) "a2"
    3) "a1"


其他一些比如HyperLogLog实现改进,RDB文件新增存储LFU和LRU信息,Jemalloc升级到5.1等特性就不一一解读了。

Redis Enterprise Software新特性

Redis开源许可从AGPL 迁移到将 Apache v2.0 与 Commons Clause 相结合的许可证,下面介绍的这些特性不再是开源软件,而是源码可用(source available)。

备注:Commons Clause 的初衷是为了抵御一些不良行为。如那些使用源代码,却不对开源代码维护做出补偿的公司。” —- Commons Clause 开发者兼 FOSSA 创始人 Kevin Wang。

support docker

现在官方版本正式支持在Docker容器上部署和运行Redis集群了。有了官方的镜像,你能非常容易并快速部署几个容器来运行一个可扩展的,高可用的Redis集群。想要了解更多请戳链接:https://redislabs.com/redis-enterprise-documentation/getting-started/docker/

Redis Labs’ Modules

Redis Labs开发了3个模块,并且被Redis企业软件(简称RS)认证,这些模块是:
RediSearch:这个模块将RS变成了一个基于内存的分布式全文索引和搜索引擎,感觉好牛逼的样子(ES表示不服)。
ReJSON:通过模块名称就知道,JSON作为Redis的内置数据类型。
ReBloom: RS具有可扩展的Bloom过滤器,并且是一个数据类型。Bloom过滤器是一种概率性的数据结构,在快速判断某些元素是否被包含在一个集合这方便表现的非常好。

参考

https://redislabs.com/redis-enterprise-documentation/overview/new-features-redis-enterprise/

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

作者:阿飞的博客

来源:https://www.jianshu.com/p/fa989a228d59


看完两件小事

如果你觉得这篇文章对你挺有启发,我想请你帮我两个小忙:

  1. 关注我们的 GitHub 博客,让我们成为长期关系
  2. 把这篇文章分享给你的朋友 / 交流群,让更多的人看到,一起进步,一起成长!
  3. 关注公众号 「方志朋」,公众号后台回复「666」 免费领取我精心整理的进阶资源教程
  4. JS中文网,Javascriptc中文网是中国领先的新一代开发者社区和专业的技术媒体,一个帮助开发者成长的社区,是给开发者用的 Hacker News,技术文章由为你筛选出最优质的干货,其中包括:Android、iOS、前端、后端等方面的内容。目前已经覆盖和服务了超过 300 万开发者,你每天都可以在这里找到技术世界的头条内容。

    本文著作权归作者所有,如若转载,请注明出处

    转载请注明:文章转载自「 Java极客技术学习 」https://www.javajike.com

    标题:Redis 5.0 正式发布!一网打尽所有新特性!

    链接:https://www.javajike.com/article/1667.html

« index
26-二十六、Redis 分区»

相关推荐

QR code