From 379a9da5be74aa117eb377d57ed3e332d31f767d Mon Sep 17 00:00:00 2001 From: Costin Leau Date: Fri, 1 Jul 2011 15:28:39 +0300 Subject: [PATCH] + readme file --- README.md | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..60347ea60 --- /dev/null +++ b/README.md @@ -0,0 +1,76 @@ +Spring Data Redis +======================= + +The primary goal of the [Spring Data](http://www.springsource.org/spring-data) project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services. +This modules provides integration with the [Redis] (http://code.google.com/p/redis/) store. + +Examples +-------- +For examples on using the Spring Data Key Value, see the dedicated project, also available on [GitHub](https://github.com/SpringSource/spring-data-keyvalue-examples) + +Getting Help +------------ + +Read the main project [website](http://www.springsource.org/spring-data) and the [User Guide](http://static.springsource.org/spring-data/datastore-keyvalue/snapshot-site/reference/html/). Look at the source code and the [JavaDocs](http://static.springsource.org/spring-data/data-keyvalue/snapshot-site/apidocs/). For more detailed questions, use the [forum](http://forum.springsource.org/forumdisplay.php?f=80). If you are new to Spring as well as to Spring Data, look for information about [Spring projects](http://www.springsource.org/projects). + +# Quick Start + + +## Redis + +For those in a hurry: + + +* Download the jar through Maven: + + + org.springframework.data + spring-data-redis + 1.0.0.BUILD-SNAPSHOT + + + + spring-maven-snapshot + true + Springframework Maven SNAPSHOT Repository + 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: + + String random = template.randomKey(); + template.set(random, new Person("John", "Smith")); + +* Use Redis 'views' to execute specific operations based on the underlying Redis type: + + ListOperations listOps = template.listOps(); + listOps.rightPush(random, new Person("Jane", "Smith")); + List peopleOnSecondFloor = listOps.range("users:floor:2", 0, -1); + + +Contributing to Spring Data +--------------------------- + +Here are some ways for you to get involved in the community: + +* Get involved with the Spring community on the Spring Community Forums. Please help out on the [forum](http://forum.springsource.org/forumdisplay.php?f=80) by responding to questions and joining the debate. +* Create [JIRA](https://jira.springframework.org/browse/DATAKV) tickets for bugs and new features and comment and vote on the ones that you are interested in. +* Github is for social coding: if you want to write code, we encourage contributions through pull requests from [forks of this repository](http://help.github.com/forking/). If you want to contribute code this way, please reference a JIRA ticket as well covering the specific issue you are addressing. +* Watch for upcoming articles on Spring by [subscribing](http://www.springsource.org/node/feed) to springframework.org + +Before we accept a non-trivial patch or pull request we will need you to sign the [contributor's agreement](https://support.springsource.com/spring_committer_signup). Signing the contributor's agreement does not grant anyone commit rights to the main repository, but it does mean that we can accept your contributions, and you will get an author credit if we do. Active contributors might be asked to join the core team, and given the ability to merge pull requests.