Sha256: 2af1058d77a1a01de9116a9a35f8df5d2ffa5fef18efb3ff8b581d7cb67ae2f5
Contents?: true
Size: 659 Bytes
Versions: 118
Compression:
Stored size: 659 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 require "rubygems" require "bunny" require "benchmark" conn = Bunny.new conn.start puts puts "-" * 80 puts "Benchmarking on #{RUBY_DESCRIPTION}" n = 50_000 ch = conn.create_channel x = ch.default_exchange s = "z" * (1024 * 128) # warm up the JIT, etc puts "Doing a warmup run..." 16000.times { x.publish(s, :routing_key => "anything") } # give OS, the server and so on some time to catch # up sleep 2.0 t = Benchmark.realtime do n.times { x.publish(s, :routing_key => "anything") } end r = (n.to_f/t.to_f) puts "Publishing rate with #{s.bytesize} bytes/msg: #{(r / 1000).round(2)} KGHz" puts puts "-" * 80
Version data entries
118 entries across 118 versions & 1 rubygems