Skip to content

Commit 9b202c3

Browse files
author
Jonathan Leibiusky
committed
Updated readme
1 parent 411b04a commit 9b202c3

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ Jedis was conceived to be EASY to use.
66

77
Jedis is fully compatible with redis 2.0.0.
88

9-
## Why Jedis is a Release Candidate?
10-
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).
11-
129
## What will be available soon?
13-
- Sharding
10+
- Sharding with connection pooling and with pipelining
11+
- More examples and documentation
1412
- More and more code and performance improvements
1513

16-
But stay close because things are going fast and all this will be implemented soon!
14+
Stay close because things are going fast!
1715

1816
## Ok.. so what can I do with Jedis?
1917
All of the following redis features are supported:
@@ -32,6 +30,7 @@ All of the following redis features are supported:
3230
- Persistence control commands
3331
- Remote server control commands
3432
- Connection pooling
33+
- Sharding (using ketama)
3534

3635
## How do I use it?
3736

@@ -41,7 +40,6 @@ You can download the latests build at:
4140
To use it just:
4241

4342
Jedis jedis = new Jedis("localhost");
44-
jedis.connect();
4543
jedis.set("foo", "bar");
4644
String value = jedis.get("foo");
4745

0 commit comments

Comments
 (0)