2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-12-04 06:30:44 +08:00
|
|
|
require "benchmark/ips"
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
|
|
|
|
|
|
conn = ActiveRecord::Base.connection.raw_connection
|
|
|
|
|
|
|
|
Benchmark.ips do |b|
|
|
|
|
b.report("simple") { User.first.name }
|
|
|
|
|
|
|
|
b.report("simple with select") { User.select("name").first.name }
|
|
|
|
|
|
|
|
b.report("pluck with first") { User.pluck(:name).first }
|
|
|
|
|
2019-10-21 19:21:10 +08:00
|
|
|
b.report("pluck with limit") { User.limit(1).pluck(:name).first }
|
|
|
|
|
2023-02-13 12:39:45 +08:00
|
|
|
b.report("pluck with pick") { User.pick(:name) }
|
2014-12-04 06:30:44 +08:00
|
|
|
|
|
|
|
b.report("raw") { conn.exec("SELECT name FROM users LIMIT 1").getvalue(0, 0) }
|
|
|
|
end
|