The class org.apache.avalon.cornerstone.blocks.connection.Connection is a
bottle neck for the deployment of a performant Server. The lines

getLogger().debug( "Starting connection on " + m_socket );
getLogger().debug( "Ending connection on " + m_socket );

perform a socket.toString() which turns up in an OS-call getHostByAddr().
Reverse DNS lookups are deadly for a server open to the whole Internet.
Could somebody at least change those lines to kind of

if (getLogger().isDebugEnabled())
     getLogger().debug( "Starting connection on " + m_socket );

Regards,
Marcos Sanz
DENIC eG


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to