Checkout of Instiki Trunk 1/21/2007.
This commit is contained in:
commit
69b62b6f33
1138 changed files with 139586 additions and 0 deletions
26
vendor/rails/activerecord/benchmarks/benchmark.rb
vendored
Normal file
26
vendor/rails/activerecord/benchmarks/benchmark.rb
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
$:.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}"
|
19
vendor/rails/activerecord/benchmarks/mysql_benchmark.rb
vendored
Normal file
19
vendor/rails/activerecord/benchmarks/mysql_benchmark.rb
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
require 'mysql'
|
||||
|
||||
conn = Mysql::real_connect("localhost", "root", "", "basecamp")
|
||||
|
||||
require 'benchmark'
|
||||
|
||||
require 'profile' if ARGV[1] == "profile"
|
||||
RUNS = ARGV[0].to_i
|
||||
|
||||
runtime = Benchmark::measure {
|
||||
RUNS.times {
|
||||
result = conn.query("SELECT * FROM posts LIMIT 100")
|
||||
result.each_hash { |p| p["title"] }
|
||||
}
|
||||
}
|
||||
|
||||
puts "Runs: #{RUNS}"
|
||||
puts "Avg. runtime: #{runtime.real / RUNS}"
|
||||
puts "Requests/second: #{RUNS / runtime.real}"
|
Loading…
Add table
Add a link
Reference in a new issue