diff --git a/README.md b/README.md
index f957a8c4d..be3f853e3 100644
--- a/README.md
+++ b/README.md
@@ -25,6 +25,7 @@ For those in a hurry:
1.0.0-BUILD-SNAPSHOT
+
spring-maven-snapshot
true
@@ -32,9 +33,11 @@ For those in a hurry:
http://maven.springframework.org/snapshot
-* Configure the Redis connector to use (here [jedis](https://github.com/xetorthio/jedis) ):
-
-
-
+
+
+
+
+* Use RedisTemplate to interact with the Redis store:
+
-* Use RedisTemplate to interact with the Redis store
-
String random = template.randomKey();
template.set(random, new Person("John", "Smith"));
-* Use Redis 'views' to execute specific operations based on the underlying Redis type
+
+* Use Redis 'views' to execute specific operations based on the underlying Redis type:
+
ListOperations listOps = template.listOps();
listOps.rightPush(random, new Person("Jane", "Smith"));