From 9b202c3fb1e6030812bb35b5ee2f93d8379c7aef Mon Sep 17 00:00:00 2001 From: Jonathan Leibiusky Date: Tue, 14 Sep 2010 01:34:21 -0300 Subject: [PATCH] Updated readme --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9ca50ab..28aeff6 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,12 @@ Jedis was conceived to be EASY to use. Jedis is fully compatible with redis 2.0.0. -## Why Jedis is a Release Candidate? -Because I want to add Sharding and add more documentation to the site. And also publish the benchmark results, which are pretty good (around 26 Kops for GETs and SETs, and 126 Kops for GETs and SETs in pipeling mode). - ## What will be available soon? -- Sharding +- Sharding with connection pooling and with pipelining +- More examples and documentation - More and more code and performance improvements -But stay close because things are going fast and all this will be implemented soon! +Stay close because things are going fast! ## Ok.. so what can I do with Jedis? All of the following redis features are supported: @@ -32,6 +30,7 @@ All of the following redis features are supported: - Persistence control commands - Remote server control commands - Connection pooling +- Sharding (using ketama) ## How do I use it? @@ -41,7 +40,6 @@ You can download the latests build at: To use it just: Jedis jedis = new Jedis("localhost"); - jedis.connect(); jedis.set("foo", "bar"); String value = jedis.get("foo");