Skip to content

Instantly share code, notes, and snippets.

@rociiu
Created December 27, 2010 23:08
Show Gist options
  • Save rociiu/756677 to your computer and use it in GitHub Desktop.
Save rociiu/756677 to your computer and use it in GitHub Desktop.
require 'net/http'
http = Hash.new{|h,k| h[k] = Net::HTTP.get_response(URI(k)).body }
http['http://www.google.com'] # makes a request
http['http://www.google.com'] # returns cached value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment