rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob 192b908c20163e52d49a49e4f71c7815a52ed4a9 238 bytes (raw)
$ git show HEAD:t/simple-http_EventMachine.ru	# shows this blob on the CLI

1
2
3
4
5
6
7
8
9
 
use Rack::ContentLength
use Rack::ContentType
run lambda { |env|
  if env['rack.multithread'] == false && env['rainbows.model'] == :EventMachine
    [ 200, {}, [ env.inspect << "\n" ] ]
  else
    raise "rack.multithread is true"
  end
}

git clone https://yhbt.net/rainbows.git