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