Skip to content

Instantly share code, notes, and snippets.

@jaimeiniesta
Last active November 17, 2015 11:32
Show Gist options
  • Save jaimeiniesta/dc374a3f54226ff07ab6 to your computer and use it in GitHub Desktop.
Save jaimeiniesta/dc374a3f54226ff07ab6 to your computer and use it in GitHub Desktop.
Results run on MacBook Air, 1.8 GHz, at home (100 Mbps connection)
Benchmarking MetaInspector 4.7.2, Ruby 2.2.3
user system total real
request and initialize: 0.450000 0.050000 0.500000 ( 4.528165)
with resolved url: 0.280000 0.020000 0.300000 ( 0.991626)
with document: 0.140000 0.010000 0.150000 ( 0.145772)
meta_tags: 0.020000 0.000000 0.020000 ( 0.017931)
links.all: 0.100000 0.000000 0.100000 ( 0.106687)
images: 0.000000 0.000000 0.000000 ( 0.000014)
to_hash: 0.260000 0.000000 0.260000 ( 0.271185)
require 'metainspector'
require 'benchmark'
puts "Benchmarking MetaInspector #{MetaInspector::VERSION}, Ruby #{RUBY_VERSION}"
n = 10
url = 'https://t.co/s17HCfRjOM'
page = MetaInspector.new(url)
Benchmark.bm do |x|
x.report('request and initialize: ') { n.times do; MetaInspector.new(url); end }
x.report('initialize with document:') { n.times do; MetaInspector.new(url, document: page.to_s); end }
x.report('meta_tags: ') { n.times do; page.meta_tags; end }
x.report('links.all: ') { n.times do; page.links.all; end }
x.report('images: ') { n.times do; page.images; end }
x.report('to_hash: ') { n.times do; page.to_hash; end }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment