diff --git a/docs/src/reference/docbook/introduction/requirements.xml b/docs/src/reference/docbook/introduction/requirements.xml
index 8a96f8460..57243dfaf 100644
--- a/docs/src/reference/docbook/introduction/requirements.xml
+++ b/docs/src/reference/docbook/introduction/requirements.xml
@@ -5,7 +5,7 @@
and Spring Framework
3.0.x and above.
- In terms of key value stores, Redis 2.2.x
- is required.
+ In terms of key value stores, Redis 2.2.x
+ is required (though 2.4 or higher is recommended).
\ No newline at end of file
diff --git a/docs/src/reference/docbook/reference/redis.xml b/docs/src/reference/docbook/reference/redis.xml
index 07dd9b3d9..ca2602022 100644
--- a/docs/src/reference/docbook/reference/redis.xml
+++ b/docs/src/reference/docbook/reference/redis.xml
@@ -16,9 +16,11 @@
Redis Requirements
- Spring Redis requires Redis 2.0 or above (Redis 2.2 is recommended) and Java SE 6.0 or above.
+ Spring Redis requires Redis 2.0 or above and Java SE 5.0 or above .
In terms of language bindings (or connectors), Spring Redis integrates with Jedis,
- JRedis and RJC, three popular open source Java libraries for Redis.
+ JRedis, RJC,
+ SRP and
+ Lettuce, five popular open source Java libraries for Redis.
If you are aware of any other connector that we should be integrating is, please send us feedback.
@@ -45,8 +47,8 @@
Connecting to Redis
- One of the first tasks when using Redis and Spring is to connect to the store through the IoC container. To do that, a Java connector (or binding) is required;
- currently Spring Redis has support for Jedis and JRedis. No matter the library one chooses, there only one set of Spring Redis API that one needs to use that behaves consistently
+ One of the first tasks when using Redis and Spring is to connect to the store through the IoC container. To do that, a Java connector (or binding) is required.
+ No matter the library one chooses, there only one set of Spring Redis API that one needs to use that behaves consistently
across all connectors, namely the org.springframework.data.redis.connection package and its
RedisConnection and RedisConnectionFactory interfaces for working respectively for retrieving active
connection to Redis.
@@ -182,7 +184,7 @@
SRP (an acronym for Sam's Redis Protocol) is the forth, open-source connector supported by
Spring Redis through the org.springframework.data.redis.connection.srp package.
- By now, its configuration is probably easy to guess::
+ By now, its configuration is probably easy to guess:
]]>
Needless to say, the configuration is quite similar to that of the other connectors.
-
+
+
+
+ Configuring Lettuce connector
+
+ Lettuce is the fifth, open-source connector supported by
+ Spring Redis through the org.springframework.data.redis.connection.lettuce package.
+
+ Its configuration is probably easy to guess:
+
+
+
+
+
+]]>
+
+ Needless to say, the configuration is quite similar to that of the other connectors.