class Redis

def quit

Close the connection.
def quit
  synchronize do
    begin
      @client.call(:quit)
    rescue Errno::ECONNRESET
    ensure
      @client.disconnect
    end
  end
end