aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/benchmarks/mysql_benchmark.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/benchmarks/mysql_benchmark.rb')
-rw-r--r--activerecord/benchmarks/mysql_benchmark.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/activerecord/benchmarks/mysql_benchmark.rb b/activerecord/benchmarks/mysql_benchmark.rb
deleted file mode 100644
index 2f9e0e6999..0000000000
--- a/activerecord/benchmarks/mysql_benchmark.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-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}" \ No newline at end of file