public
Description: A very fast & simple Ruby web server
Homepage: http://code.macournoyer.com/thin/
Clone URL: git://github.com/macournoyer/thin.git
Search Repo:
Add a note to threaded mode saying it's experimental because it is
macournoyer (author)
Sat Apr 05 21:55:43 -0700 2008
commit  5fb7b2328f93160f876721a163d72e19485c7803
tree    d14ce64580e210650290830da2a3a915046993ea
parent  f450ccf6a84941860d7884e94f061c7bc50623aa
...
108
109
110
111
 
 
112
113
114
...
108
109
110
 
111
112
113
114
115
0
@@ -108,7 +108,8 @@ module Thin
0
         opts.on( "--max-persistent-conns NUM",
0
                                        "Maximum number of persistent connections",
0
                                        "(default: #{@options[:max_persistent_conns]})") { |num| @options[:max_persistent_conns] = num.to_i }
0
- opts.on( "--threaded", "Call the Rack application in threads") { @options[:threaded] = true }
0
+ opts.on( "--threaded", "Call the Rack application in threads " +
0
+ "[experimental]") { @options[:threaded] = true }
0
         
0
         opts.separator ""
0
         opts.separator "Common options:"

Comments

    No one has commented yet.