about summary refs log tree commit homepage
path: root/lib/mongrel/tcphack.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mongrel/tcphack.rb')
-rw-r--r--lib/mongrel/tcphack.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/mongrel/tcphack.rb b/lib/mongrel/tcphack.rb
new file mode 100644
index 0000000..3f769b2
--- /dev/null
+++ b/lib/mongrel/tcphack.rb
@@ -0,0 +1,12 @@
+
+# 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