rainbows.git  about / heads / tags
Unicorn for sleepy apps and slow clients
blob cd5df82bdcce5c1d6a6e74e1477e1b1e201b4871 242 bytes (raw)
$ git show v0.97.0:t/simple-http_ThreadPool.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'] == :ThreadPool
    [ 200, {}, [ Thread.current.inspect << "\n" ] ]
  else
    raise "rack.multithread is not true"
  end
}

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