class Redis::Distributed

def bitpos(key, bit, start=nil, stop=nil)

Return the position of the first bit set to 1 or 0 in a string.
def bitpos(key, bit, start=nil, stop=nil)
  node_for(key).bitpos(key, bit, start, stop)
end