* @param end2
* @return IntegerReply
*/
public IntegerReply bitcount(Object key0, Object start1, Object end2) throws RedisException {
if (version < BITCOUNT_VERSION) throw new RedisException("Server does not support BITCOUNT");
return (IntegerReply) execute(BITCOUNT, new Command(BITCOUNT_BYTES, key0, start1, end2));
}