From 433cdfa689691c62ee1bb4e10fceb8ef12abf668 Mon Sep 17 00:00:00 2001 From: Terry Date: Mon, 14 Apr 2025 21:40:34 +0800 Subject: [PATCH] Update the default Redis driver as Lettuce Signed-off-by: Terry --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index c13252d..1fff8cb 100644 --- a/README.adoc +++ b/README.adoc @@ -90,7 +90,7 @@ factory drives both the template and the message listener container, letting the to the Redis server. This example uses Spring Boot's default `RedisConnectionFactory`, an instance of -`JedisConnectionFactory` that is based on the https://github.com/xetorthio/jedis[Jedis] +`LettuceConnectionFactory` that is based on the https://github.com/redis/lettuce[Lettuce] Redis library. The connection factory is injected into both the message listener container and the Redis template, as the following example (from `src/main/java/com/example/messagingredis/MessagingRedisApplication.java`) shows: