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 Fixes
Other
更新方式: <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 |