Sha256: d0f1deee5fec75dace39299c5b6b7c882306a17ef62fc9ed69d17a74d9f777b9
Contents?: true
Size: 658 Bytes
Versions: 118
Compression:
Stored size: 658 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 * 64) # 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