设为首页收藏本站

LUPA开源社区

 找回密码
 注册
文章 帖子 博客
LUPA开源社区 首页 业界资讯 软件追踪 查看内容

Lettuce 5.0.4发布,Redis Java客户端

2018-5-8 21:33| 发布者: joejoe0332| 查看: 572| 评论: 0|原作者: oschina|来自: oschina

摘要: Lettuce 5.0.4 已发布,Lettuce 是一个可伸缩线程安全的Redis客户端。多个线程可以共享同一个 RedisConnection。它利用优秀nettyNIO 框架来高效地管理多个连接。示例代码:RedisClientclient=newRedisClient("localh ...

Lettuce 5.0.4 已发布,Lettuce 是一个可伸缩线程安全的 Redis 客户端。多个线程可以共享同一个 RedisConnection。它利用优秀 netty NIO 框架来高效地管理多个连接。

示例代码:

RedisClient client = new RedisClient("localhost")
RedisConnection<String, String> connection = client.connect()
String value = connection.get("key")

5.0.4 是 Lettuce 5 系列的第四个 bug 修复版本,解决了 12 个问题:

Commands

  • Add AUTH option to MIGRATE command #733

  • Add MASTER type to KillArgs #760

Fixes

  • Warning when refreshing topology #756 (Thanks to @theliro)

  • DefaultEndpoint.QUEUE_SIZE becomes out of sync, preventing command queueing #764(Thanks to @nivekastoreth)

  • DefaultEndpoint contains System.out.println(…) #765

  • Do not retry completed commands through RetryListener #767

Other

  • Upgrade to netty 4.1.23.Final #755

  • Upgrade to Reactor Bismuth SR8 #758

  • Upgrade to RxJava 1.3.8 #759

  • Extend documentation for argument objects #761

  • Upgrade to RxJava 2.1.13 #771

  • Upgrade to netty 4.1.24.Final #770

更新方式:

<dependency>
  <groupId>io.lettuce</groupId>
  <artifactId>lettuce-core</artifactId>
  <version>5.0.4.RELEASE</version>
</dependency>

下载地址:https://github.com/lettuce-io/lettuce-core/releases/tag/5.0.4.RELEASE


酷毙

雷人

鲜花

鸡蛋

漂亮
  • 快毕业了,没工作经验,
    找份工作好难啊?
    赶紧去人才芯片公司磨练吧!!

最新评论

关于LUPA|人才芯片工程|人才招聘|LUPA认证|LUPA教育|LUPA开源社区 ( 浙B2-20090187 浙公网安备 33010602006705号   

返回顶部