
Linuxeden 开源社区 --

Lettuce 5.0.2 和 4.4.3 已发布,Lettuce 是一个可伸缩线程安全的 Redis 客户端。多个线程可以共享同一个 RedisConnection。它利用优秀 netty NIO 框架来高效地管理多个连接。
示例代码:
RedisClient client = new RedisClient("localhost")
RedisConnection<String, String> connection = client.connect()
String value = connection.get("key")
5.0.2 是 Lettuce 5 系列的第二个 bug 修复版本,解决了 21 个问题,包含对 resilience 改进的修复。建议升级。
<dependency>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
4.4.3 是 Lettuce 4.4 系列的第三个 bug 修复版本,解决了 16 个问题,还升级了一些依赖,建议升级。
<dependency>
<groupId>biz.paluch.redis</groupId>
<artifactId>lettuce</artifactId>
<version>4.4.3.Final</version>
</dependency>
详细更新内容和下载地址:
https://github.com/lettuce-io/lettuce-core/releases/tag/4.4.3.Final
https://github.com/lettuce-io/lettuce-core/releases/tag/5.0.2.RELEASE
转自 http://ift.tt/2EVo9o6
The post Lettuce 5.0.2 和 4.4.3 发布,Redis Java 客户端 appeared first on Linuxeden开源社区.
http://ift.tt/2sLkFQ7
没有评论:
发表评论