mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
db045dbbf6
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
26 lines
589 B
Ruby
26 lines
589 B
Ruby
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
|
if ARGV[2]
|
|
require 'rubygems'
|
|
require_gem 'activerecord', ARGV[2]
|
|
else
|
|
require 'active_record'
|
|
end
|
|
|
|
ActiveRecord::Base.establish_connection(:adapter => "mysql", :database => "basecamp")
|
|
|
|
class Post < ActiveRecord::Base; end
|
|
|
|
require 'benchmark'
|
|
|
|
RUNS = ARGV[0].to_i
|
|
if ARGV[1] == "profile" then require 'profile' end
|
|
|
|
runtime = Benchmark::measure {
|
|
RUNS.times {
|
|
Post.find_all(nil,nil,100).each { |p| p.title }
|
|
}
|
|
}
|
|
|
|
puts "Runs: #{RUNS}"
|
|
puts "Avg. runtime: #{runtime.real / RUNS}"
|
|
puts "Requests/second: #{RUNS / runtime.real}"
|