Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require 'mechanize'
- require 'awesome_print'
- require 'benchmark'
- @url = "http://www.walmart.com/ip/Hello-Kitty-Microfiber-Star-Kitty-Drapes/16775275?findingMethod=rr"
- agent = Mechanize.new
- time = Benchmark.realtime do
- page = agent.get(@url)
- end
- ap "1 - #{time}"
- # agent = Mechanize.new
- @url = "http://www.walmart.com/ip/Hello-Kitty-Microfiber-Kitty-Me-Twin-Full-Bedding-Comforter/16775277"
- time = Benchmark.realtime do
- page = agent.get(@url)
- end
- ap "2 - #{time}"
- @url = "http://www.walmart.com/ip/Hello-Kitty-Bonjour-Kitty-Rug/16775276?findingMethod=rr"
- time = Benchmark.realtime do
- page = agent.get(@url)
- end
- ap "3 - #{time}"
- # => "1 - 0.766310236"
- # => "2 - 0.966001185"
- # => "3 - 0.763668394"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement