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

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