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

@@ -3412,22 +3412,4 @@ public class Jedis extends BinaryJedis implements JedisCommands,
return BuilderFactory.STRING_MAP
.build(client.getBinaryMultiBulkReply());
}
public Long pfadd(final String key, String... elements) {
checkIsInMulti();
client.pfadd(key, elements);
return client.getIntegerReply();
}
public long pfcount(final String key) {
checkIsInMulti();
client.pfcount(key);
return client.getIntegerReply();
}
public String pfmerge(final String destkey, final String... sourcekeys) {
checkIsInMulti();
client.pfmerge(destkey, sourcekeys);
return client.getStatusCodeReply();
}
}