Skip to content

Instantly share code, notes, and snippets.

@marianposaceanu
Created October 23, 2015 12:05
Show Gist options
  • Save marianposaceanu/16e7448f7d79f3f83442 to your computer and use it in GitHub Desktop.
Save marianposaceanu/16e7448f7d79f3f83442 to your computer and use it in GitHub Desktop.
require 'benchmark'
include Benchmark
n = 500000
Benchmark.benchmark(CAPTION, 20, FORMAT, ">total:", ">avg:") do |x|
x.report('via usual syntactics') { n.times { class MyError < StandardError ; end && Object.send(:remove_const, 'MyError') } }
x.report('via Class.new') { n.times { MyError = Class.new(StandardError) && Object.send(:remove_const, 'MyError') } }
end
# Results
# user system total real
# via usual syntactics 0.125000 0.000000 0.125000 ( 0.114111)
# via Class.new 1.046000 0.015000 1.061000 ( 1.082029)
#
# => it seems it's an order of magnitude slower
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment