about summary refs log tree commit homepage
path: root/lib/unicorn/tcphack.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/unicorn/tcphack.rb')
-rw-r--r--lib/unicorn/tcphack.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/unicorn/tcphack.rb b/lib/unicorn/tcphack.rb
new file mode 100644
index 0000000..634f9dd
--- /dev/null
+++ b/lib/unicorn/tcphack.rb
@@ -0,0 +1,18 @@
+# Copyright (c) 2005 Zed A. Shaw
+# You can redistribute it and/or modify it under the same terms as Ruby.
+#
+# Additional work donated by contributors.  See http://mongrel.rubyforge.org/attributions.html
+# for more information.
+
+
+# A modification proposed by Sean Treadway that increases the default accept
+# queue of TCPServer to 1024 so that it handles more concurrent requests.
+class TCPServer
+   def initialize_with_backlog(*args)
+     initialize_without_backlog(*args)
+     listen(1024)
+   end
+
+   alias_method :initialize_without_backlog, :initialize
+   alias_method :initialize, :initialize_with_backlog
+end