about summary refs log tree commit homepage
path: root/lib/rainbows/const.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-27 09:20:37 +0000
committerEric Wong <normalperson@yhbt.net>2011-06-27 09:33:00 +0000
commit1f8ebc013e8b0e9a62587fb95a81e8c5f541a9d4 (patch)
tree752d2aa1ec54e666f640036879271d36c392ad13 /lib/rainbows/const.rb
parentcc74623dddb9d28d7d5a2479aafdb7a754645697 (diff)
downloadrainbows-1f8ebc013e8b0e9a62587fb95a81e8c5f541a9d4.tar.gz
Rainbows! now scales to more than 1024 worker processes without
special privileges.  To enable this, Rainbows! now depends on
Unicorn 4.x and thus raindrops[1].

client_max_header_size directive is added to limit per-client
memory usage in headers.

An experimental StreamResponseEpoll concurrency option now
exists to buffer outgoing responses without any thread-safe
dependencies.  Unlike the rest of Rainbows! which works fine
without nginx, this concurrency option is /only/ supported
behind nginx, even more strongly so than Unicorn itself.
non-nginx LAN clients are NOT supported for this.  This relies
on the sleepy_penguin[2] RubyGem (and Linux).

There are some minor bug fixes and cleanups all around.  See
"git log v3.4.0.." for details.

[1] http://raindrops.bogomips.org/
[2] http://bogomips.org/sleepy_penguin/
Diffstat (limited to 'lib/rainbows/const.rb')
-rw-r--r--lib/rainbows/const.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/const.rb b/lib/rainbows/const.rb
index a758fba..23b1d52 100644
--- a/lib/rainbows/const.rb
+++ b/lib/rainbows/const.rb
@@ -2,7 +2,7 @@
 # :enddoc:
 module Rainbows::Const
 
-  RAINBOWS_VERSION = '3.3.0'
+  RAINBOWS_VERSION = '4.0.0'
 
   include Unicorn::Const