From d43233e87b189f75dc306821cf48ef53cec5cfdf Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Thu, 2 Dec 2010 19:28:46 +0200 Subject: [PATCH] + update README.md --- README.md | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) 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"));