summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Tucker <jftucker@gmail.com>2016-03-02 15:52:16 -0800
committerJames Tucker <jftucker@gmail.com>2016-03-02 15:52:16 -0800
commit4208c283aa7dafc67a2ec4229f822e9be8ea3694 (patch)
treecd66bcaaf7bdab1fd3b284e08f026fcd7884534e
parentea2ed578c3687553e540b7c61e11c0855c316c1a (diff)
downloadrack-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.rb2
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