Skip to content

Instantly share code, notes, and snippets.

require 'eventmachine'
CONNECTIONS = 250
done = 0
failed = 0
puts "Starting"
EM.run {
CONNECTIONS.times { |i|
begin
EM.connect('www.google.com',80) { |c|