class Redis

def getbit(key, offset)

Returns the bit value at offset in the string value stored at key.
def getbit(key, offset)
  synchronize do
    @client.call(:getbit, key, offset)
  end
end