about summary refs log tree commit homepage
path: root/lib/rainbows
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-04-26 13:30:28 -0700
committerEric Wong <normalperson@yhbt.net>2011-04-26 13:36:47 -0700
commit00b9b46b2a49ab96f74fd21807ee9c93b218bc2d (patch)
tree698225dbb41c3eed04c56b99ae63200c3533900e /lib/rainbows
parente3c8152e016fe29f76a996b8802df7158c081db0 (diff)
downloadrainbows-00b9b46b2a49ab96f74fd21807ee9c93b218bc2d.tar.gz
Diffstat (limited to 'lib/rainbows')
-rw-r--r--lib/rainbows/revactor.rb12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/rainbows/revactor.rb b/lib/rainbows/revactor.rb
index ce06e08..2dff751 100644
--- a/lib/rainbows/revactor.rb
+++ b/lib/rainbows/revactor.rb
@@ -3,10 +3,14 @@ require 'revactor'
 require 'fcntl'
 Revactor::VERSION >= '0.1.5' or abort 'revactor 0.1.5 is required'
 
-# Enables use of the Actor model through
-# {Revactor}[http://revactor.org] under Ruby 1.9.  It spawns one
-# long-lived Actor for every listen socket in the process and spawns a
-# new Actor for every client connection accept()-ed.
+# Enables use of the Actor model through {Revactor}[http://revactor.org]
+# under Ruby 1.9.
+#
+# \Revactor dormant upstream, so the use of this is NOT recommended for
+# new applications.
+#
+# It spawns one long-lived Actor for every listen socket in the process
+# and spawns a new Actor for every client connection accept()-ed.
 # +worker_connections+ will limit the number of client Actors we have
 # running at any one time.
 #