This repository has been archived by the owner on Jan 28, 2024. It is now read-only.
forked from norman/friendly_id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench.rb
84 lines (65 loc) · 1.85 KB
/
bench.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
require File.expand_path("../test/helper", __FILE__)
require "ffaker"
N = 10000
def transaction
ActiveRecord::Base.transaction do
yield
raise ActiveRecord::Rollback
end
end
class Array
def rand
self[Kernel.rand(length)]
end
end
Book = Class.new ActiveRecord::Base
class Journalist < ActiveRecord::Base
extend FriendlyId
friendly_id :name, use: :slugged
end
class Manual < ActiveRecord::Base
extend FriendlyId
friendly_id :name, use: :history
end
class Restaurant < ActiveRecord::Base
extend FriendlyId
friendly_id :name, use: :finders
end
BOOKS = []
JOURNALISTS = []
MANUALS = []
RESTAURANTS = []
100.times do
name = FFaker::Name.name
BOOKS << (Book.create! name: name).id
JOURNALISTS << (Journalist.create! name: name).friendly_id
MANUALS << (Manual.create! name: name).friendly_id
RESTAURANTS << (Restaurant.create! name: name).friendly_id
end
ActiveRecord::Base.connection.execute "UPDATE manuals SET slug = NULL"
Benchmark.bmbm do |x|
x.report "find (without FriendlyId)" do
N.times { Book.find BOOKS.rand }
end
x.report "find (in-table slug)" do
N.times { Journalist.friendly.find JOURNALISTS.rand }
end
x.report "find (in-table slug; using finders module)" do
N.times { Restaurant.find RESTAURANTS.rand }
end
x.report "find (external slug)" do
N.times { Manual.friendly.find MANUALS.rand }
end
x.report "insert (without FriendlyId)" do
N.times { transaction { Book.create name: FFaker::Name.name } }
end
x.report "insert (in-table-slug)" do
N.times { transaction { Journalist.create name: FFaker::Name.name } }
end
x.report "insert (in-table-slug; using finders module)" do
N.times { transaction { Restaurant.create name: FFaker::Name.name } }
end
x.report "insert (external slug)" do
N.times { transaction { Manual.create name: FFaker::Name.name } }
end
end