Sha256: 778b4c4def7651db183f69ffc2e2e716dc658cc7139d4f8352bafe897a5fbfdb

Contents?: true

Size: 708 Bytes

Versions: 100

Compression:

Stored size: 708 Bytes

Contents

#!/usr/bin/env ruby
# encoding: utf-8

require "rubygems"
require "set"
require "thread"
require "benchmark"
require "monitor"

puts
puts "-" * 80
puts "Benchmarking on #{RUBY_DESCRIPTION}"

n  = 2_000_000
mx = Mutex.new
mt = Monitor.new

# warm up the JIT, etc
puts "Doing a warmup run..."
n.times do |i|
  mx.synchronize { 1 }
  mt.synchronize { 1 }
end

t1  = Benchmark.realtime do
  n.times do |i|
    mx.synchronize { 1 }
  end
end
r1  = (n.to_f/t1.to_f)

t2  = Benchmark.realtime do
  n.times do |i|
    mt.synchronize { 1 }
  end
end
r2  = (n.to_f/t2.to_f)

puts "Mutex#synchronize, rate: #{(r1 / 1000).round(2)} KGHz"
puts "Monitor#synchronize, rate: #{(r2 / 1000).round(2)} KGHz"
puts
puts "-" * 80

Version data entries

100 entries across 100 versions & 1 rubygems

Version Path
bunny-2.17.0 benchmarks/mutex_and_monitor.rb
bunny-2.16.1 benchmarks/mutex_and_monitor.rb
bunny-2.15.0 benchmarks/mutex_and_monitor.rb
bunny-2.14.4 benchmarks/mutex_and_monitor.rb
bunny-2.14.3 benchmarks/mutex_and_monitor.rb
bunny-2.14.2 benchmarks/mutex_and_monitor.rb
bunny-2.14.1 benchmarks/mutex_and_monitor.rb
bunny-2.13.0 benchmarks/mutex_and_monitor.rb
bunny-2.12.1 benchmarks/mutex_and_monitor.rb
bunny-2.12.0 benchmarks/mutex_and_monitor.rb
bunny-2.12.0.rc1 benchmarks/mutex_and_monitor.rb
bunny-2.11.0 benchmarks/mutex_and_monitor.rb
bunny-2.11.0.pre1 benchmarks/mutex_and_monitor.rb
bunny-2.10.0 benchmarks/mutex_and_monitor.rb
bunny-2.9.2 benchmarks/mutex_and_monitor.rb
bunny-2.9.1 benchmarks/mutex_and_monitor.rb
bunny-2.6.7 benchmarks/mutex_and_monitor.rb
bunny-2.7.4 benchmarks/mutex_and_monitor.rb
bunny-2.8.1 benchmarks/mutex_and_monitor.rb
bunny-2.9.0 benchmarks/mutex_and_monitor.rb