Skip to content

Instantly share code, notes, and snippets.

@nanodeath
Created January 16, 2010 03:04
Show Gist options
  • Save nanodeath/278621 to your computer and use it in GitHub Desktop.
Save nanodeath/278621 to your computer and use it in GitHub Desktop.
>> hydra = Typhoeus::Hydra.new; a = Typhoeus::Request.new("https://mail.google.com"); hydra.queue(a); hydra.run; a.response.code
=> 200
>> hydra = Typhoeus::Hydra.new; a = Typhoeus::Request.new("https://mail.google.com"); hydra.queue(a); hydra.run; a.response.code
=> 200
>> hydra = Typhoeus::Hydra.hydra; a = Typhoeus::Request.new("https://mail.google.com"); hydra.queue(a); hydra.run; a.response.code
=> 0
>> hydra = Typhoeus::Hydra.hydra; a = Typhoeus::Request.new("https://mail.google.com"); hydra.queue(a); hydra.run; a.response.code
=> 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment