Merge branch 'making_jedis_pool_cdi_compatible' of https://github.com/nykolaslima/jedis into nykolaslima-making_jedis_pool_cdi_compatible

This commit is contained in:
Jungtaek Lim
2014-10-09 08:35:06 +09:00
7 changed files with 34 additions and 16 deletions

View File

@@ -12,6 +12,11 @@ import redis.clients.jedis.JedisCluster.Reset;
import redis.clients.util.SafeEncoder;
public class Client extends BinaryClient implements Commands {
public Client() {
super(Protocol.DEFAULT_HOST, Protocol.DEFAULT_PORT);
}
public Client(final String host) {
super(host);
}