Sha256: aca2c2675c0bfc2e7ac649b6e17d9462fab6a4992ac0f7a87fc371b63e603839

Contents?: true

Size: 1.38 KB

Versions: 7

Compression:

Stored size: 1.38 KB

Contents

require File.expand_path("../test/helper", __FILE__)
require "ffaker"

N = 1000

def transaction
  ActiveRecord::Base.transaction { yield ; raise ActiveRecord::Rollback }
end

class Array
  def rand
    self[Kernel.rand(length)]
  end
end

Book = Class.new ActiveRecord::Base

class Journalist < ActiveRecord::Base
  extend FriendlyId
  include FriendlyId::Slugged
  friendly_id :name
end

class Manual < ActiveRecord::Base
  extend FriendlyId
  include FriendlyId::History
  friendly_id :name
end

BOOKS       = []
JOURNALISTS = []
MANUALS     = []

100.times do
  name = Faker::Name.name
  BOOKS       << (Book.create! :name => name).id
  JOURNALISTS << (Journalist.create! :name => name).friendly_id
  MANUALS     << (Manual.create! :name => name).friendly_id
end

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.find JOURNALISTS.rand}
  end
  x.report 'find (external slug)' do
    N.times {Manual.find_by_friendly_id MANUALS.rand}
  end

  x.report 'insert (without FriendlyId)' do
    N.times {transaction {Book.create :name => Faker::Name.name}}
  end

  x.report 'insert (in-table-slug)' do
    N.times {transaction {Journalist.create :name => Faker::Name.name}}
  end

  x.report 'insert (external slug)' do
    N.times {transaction {Manual.create :name => Faker::Name.name}}
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
friendly_id-4.0.0.beta10 bench.rb
friendly_id-4.0.0.beta8 bench.rb
friendly_id-4.0.0.beta7 bench.rb
friendly_id4-4.0.0.beta6 bench.rb
friendly_id4-4.0.0.beta5 bench.rb
friendly_id4-4.0.0.beta4 bench.rb
friendly_id4-4.0.0.beta3 bench.rb