Created
October 23, 2015 12:05
-
-
Save marianposaceanu/16e7448f7d79f3f83442 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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