rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob 43dde1a567b01614f82a273f9ee15d0a938d1377 231 bytes (raw)
$ git show HEAD:t/simple-http_RevThreadPool.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'] && env['rainbows.model'] == :RevThreadPool
    [ 200, {}, [ env.inspect << "\n" ] ]
  else
    raise "rack.multithread is false"
  end
}

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