Rainbows! 3.0.0 - serving the fastest apps to slow clients faster!
[rainbows.git] / lib / rainbows / coolio.rb
blob59bfde6ffab132aab8a88a5faa483622f552a24c
1 # -*- encoding: binary -*-
2 require 'rainbows/coolio_support'
4 # Implements a basic single-threaded event model with
5 # {Cool.io}[http://coolio.github.com/].  It is capable of handling
6 # thousands of simultaneous client connections, but with only a
7 # single-threaded app dispatch.  It is suited for slow clients and
8 # fast applications (applications that do not have slow network
9 # dependencies) or applications that use DevFdResponse for deferrable
10 # response bodies.  It does not require your Rack application to be
11 # thread-safe, reentrancy is only required for the DevFdResponse body
12 # generator.
14 # Compatibility: Whatever Cool.io itself supports, currently Ruby
15 # 1.8/1.9.
17 # This model does not implement as streaming "rack.input" which
18 # allows the Rack application to process data as it arrives.  This
19 # means "rack.input" will be fully buffered in memory or to a
20 # temporary file before the application is entered.
22 # This model is mostly compatible with users of "async.callback" in
23 # the Rack environment as long as they do not depend on EventMachine.
24 module Rainbows::Coolio
25   # :stopdoc:
26   # keep-alive timeout scoreboard
27   KATO = {}
29   # all connected clients
30   CONN = {}
32   if {}.respond_to?(:compare_by_identity)
33     CONN.compare_by_identity
34     KATO.compare_by_identity
35   end
37   autoload :Client, 'rainbows/coolio/client'
38   autoload :Master, 'rainbows/coolio/master'
39   autoload :ThreadClient, 'rainbows/coolio/thread_client'
40   autoload :ResponsePipe, 'rainbows/coolio/response_pipe'
41   autoload :ResponseChunkPipe, 'rainbows/coolio/response_chunk_pipe'
42   # :startdoc:
43 end
44 # :enddoc:
45 require 'rainbows/coolio/heartbeat'
46 require 'rainbows/coolio/server'
47 require 'rainbows/coolio/core'
48 Rainbows::Coolio.__send__ :include, Rainbows::Coolio::Core