3 A Clojure client library for the
4 [Redis](http://code.google.com/p/redis) key value storage system.
8 To use redis-clojure, you'll need:
10 * The [Clojure](http://clojure.org) programming language
11 * The [Clojure-Contrib](http://code.google.com/p/clojure-contrib) library (for running the tests)
15 To build redis-clojure:
17 ant -Dclojure.jar=/path/to/clojure.jar
19 This will build `redis-clojure.jar`.
25 ant -Dclojure.jar=/path/to/clojure.jar -Dclojure-contrib.jar=/path/to/clojure-contrib.jar test
27 *Note* you need to have `redis-server` running first.
31 To use redis-clojure in your application, simply make sure either
32 `redis-clojure.jar` or the contents of the `src/` directory is on your
35 This can be accomplished like so:
37 (add-classpath "file:///path/to/redis-clojure.jar")
41 Check the `examples/` directory.
43 *Note* you need to have `redis-server` running first.
48 * Maybe implement pipelining