class TCPServer
A modification proposed by Sean Treadway that increases the default accept queue of TCPServer to 1024 so that it handles more concurrent requests.
Public Instance Methods
initialize_with_backlog(*args)
click to toggle source
# File lib/mongrel/tcphack.rb, line 11 def initialize_with_backlog(*args) initialize_without_backlog(*args) listen(1024) end
Also aliased as: initialize