Merge branch 'master' of git://github.com/hamsterready/jedis into hamsterready-master
Conflicts: src/main/java/redis/clients/jedis/BinaryClient.java src/main/java/redis/clients/jedis/Client.java src/main/java/redis/clients/jedis/Jedis.java src/main/java/redis/clients/jedis/Protocol.java
This commit is contained in:
@@ -79,7 +79,7 @@ public class BinaryClient extends Connection {
|
||||
}
|
||||
|
||||
public void ping() {
|
||||
sendCommand(PING);
|
||||
sendCommand(Command.PING);
|
||||
}
|
||||
|
||||
public void set(final byte[] key, final byte[] value) {
|
||||
@@ -856,4 +856,8 @@ public class BinaryClient extends Connection {
|
||||
|
||||
sendCommand(BITOP, bargs);
|
||||
}
|
||||
|
||||
public void sentinel(final byte[]... args) {
|
||||
sendCommand(SENTINEL, args);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user