class Redis::Distributed

def getbit(key, offset)

Returns the bit value at offset in the string value stored at key.
def getbit(key, offset)
  node_for(key).getbit(key, offset)
end