Skip to content

Instantly share code, notes, and snippets.

View andriytyurnikov's full-sized avatar

Andriy Tyurnikov andriytyurnikov

View GitHub Profile
@andriytyurnikov
andriytyurnikov / config.ru
Last active December 14, 2015 10:49 — forked from josevalim/config.ru
# rackup -s puma
require 'puma' # thin does some weird caching
run proc { |env|
body = Enumerator.new do |socket|
socket << " "*1024 # Browsers wait for time or big data chunk
5.times do
socket << "Hello"
puts "Hello"