diff options
author | James Tucker <jftucker@gmail.com> | 2016-03-02 15:52:16 -0800 |
---|---|---|
committer | James Tucker <jftucker@gmail.com> | 2016-03-02 15:52:16 -0800 |
commit | 4208c283aa7dafc67a2ec4229f822e9be8ea3694 (patch) | |
tree | cd66bcaaf7bdab1fd3b284e08f026fcd7884534e | |
parent | ea2ed578c3687553e540b7c61e11c0855c316c1a (diff) | |
download | rack-default-server.tar.gz |
Puma should be the default webserver for rackupdefault-server
* Thin is based on fully unmaintained code (EM)
* Puma is significantly faster, on a tuned 16 core VM the difference is 50kqps.
-rw-r--r-- | lib/rack/handler.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rack/handler.rb b/lib/rack/handler.rb index adaac5d6..70a77fa9 100644 --- a/lib/rack/handler.rb +++ b/lib/rack/handler.rb @@ -52,7 +52,7 @@ module Rack elsif ENV.include?("RACK_HANDLER") self.get(ENV["RACK_HANDLER"]) else - pick ['thin', 'puma', 'webrick'] + pick ['puma', 'thin', 'webrick'] end end |