I'm assuming you're using some 4.0.x version, I think warp has been deprecated and replaced by Coyote in 4.1.
This document isn't of much use... http://jakarta.apache.org/tomcat/tomcat-4.0-doc/config/warp.html but you can probably find out the answer in the source org.apache.catalina.connector.warp.WarpConnector I believe that maxProcessors represents the number of threads that will be created to handle request/response pairs. However, each thread can probably handle a number of open connections. In the following config entry, perhaps acceptCount is the number of connections each "processor" can handle. <Connector className="org.apache.catalina.connector.warp.WarpConnector" port="8008" minProcessors="5" maxProcessors="75" enableLookups="true" appBase="webapps" acceptCount="10" debug="0"/> The source would be your best bet. Regards, Michael ----- Original Message ----- From: "Ryszard Lach" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 28, 2002 5:58 PM Subject: warp connector and number of connecionst > Hi! > > What does maxProcessors attribute in warp connector mean ? I thought it > is the total number of connections between apache and the engine the > connector was defined in, but I see there is many times more established > tcp connections between my apache and tomcat then defined in > maxProcessors. Maybe it is the number of connections for every > application ? > > Richard. > > -- > "First they ignore you. Then they laugh at you. Then they > fight you. Then you win." - Mohandas Gandhi. > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
