class Redis::Distributed

def bitcount(key, start = 0, stop = -1, scale: nil)

Count the number of set bits in a range of the string value stored at key.
def bitcount(key, start = 0, stop = -1, scale: nil)
  node_for(key).bitcount(key, start, stop, scale: scale)
end