Revert "Add support for HLL"

This reverts commit afefb71e57.
This commit is contained in:
Jungtaek Lim
2014-04-05 18:46:06 +09:00
parent 96591a1528
commit ac53759f97
5 changed files with 2 additions and 89 deletions

View File

@@ -320,7 +320,7 @@ public class BinaryClient extends Connection {
public void sadd(final byte[] key, final byte[]... members) {
sendCommand(SADD, joinParameters(key, members));
}
public void smembers(final byte[] key) {
sendCommand(SMEMBERS, key);
}
@@ -1253,15 +1253,4 @@ public class BinaryClient extends Connection {
public void asking() {
sendCommand(Command.ASKING);
}
public void pfadd(final byte[] key, final byte[]... elements) {
sendCommand(PFADD, joinParameters(key, elements));
}
public void pfcount(final byte[] key) {
sendCommand(PFCOUNT, key);
}
public void pfmerge(final byte[] deskey, final byte[]... sourcekeys) {
sendCommand(PFMERGE, joinParameters(deskey, sourcekeys));
}
}