class Redis::Distributed

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

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