Re: Tomcat 5.x thread model

2006-09-14 Thread Bill Barker
For the standard Java connector, it's one socket - one thread (this is also true of the standard Java AJP/1.3 connector, but in this case requests from many different users will use the same socket). For the APR connector and the Nio connector (currently Tomcat 6 only), a thread will handle req

Tomcat 5.x thread model

2006-09-14 Thread COURTAULT Francois
Hello, I want to know what is the model used by Tomcat between the socket and the thread ? Is it one socket - one thread ? For example the communication between one entity and a Tomcat instance uses HTTP 1.1 is establish by invoking servlet1, if the entity invokes again servlet1 (without any co