Sha256: 50e74b2a06bc5b4f1c6009e524931d8ccd1b5c3ef2e3898f46811cbc89d56117

Contents?: true

Size: 524 Bytes

Versions: 176

Compression:

Stored size: 524 Bytes

Contents

if ARGV.empty?
  puts "Usage: ./script/performance/benchmarker [times] 'Person.expensive_way' 'Person.another_expensive_way' ..."
  exit 1
end

begin
  N = Integer(ARGV.first)
  ARGV.shift
rescue ArgumentError
  N = 1
end

require RAILS_ROOT + '/config/environment'
require 'benchmark'
include Benchmark

# Don't include compilation in the benchmark
ARGV.each { |expression| eval(expression) }

bm(6) do |x|
  ARGV.each_with_index do |expression, idx|
    x.report("##{idx + 1}") { N.times { eval(expression) } }
  end
end 

Version data entries

176 entries across 175 versions & 19 rubygems

Version Path
rails-1.2.3 lib/commands/performance/benchmarker.rb
rails-2.0.2 lib/commands/performance/benchmarker.rb
rails-2.0.1 lib/commands/performance/benchmarker.rb
rails-1.2.6 lib/commands/performance/benchmarker.rb
rails-2.0.0 lib/commands/performance/benchmarker.rb
rails-2.0.4 lib/commands/performance/benchmarker.rb
rails-2.1.2 lib/commands/performance/benchmarker.rb
rails-2.0.5 lib/commands/performance/benchmarker.rb
rails-2.1.1 lib/commands/performance/benchmarker.rb
rails-2.1.0 lib/commands/performance/benchmarker.rb
rails-2.3.2 lib/commands/performance/benchmarker.rb
rails-2.2.2 lib/commands/performance/benchmarker.rb
rq-3.3.0 rails/vendor/rails/railties/lib/commands/performance/benchmarker.rb
rq-3.4.0 rails/vendor/rails/railties/lib/commands/performance/benchmarker.rb
spree-0.0.9 vendor/rails/railties/lib/commands/performance/benchmarker.rb
spree-0.2.0 vendor/rails/railties/lib/commands/performance/benchmarker.rb