> From: Tony Anecito [mailto:[EMAIL PROTECTED]
> Subject: RE: SingleThreadModel for servlets
>
> The question I wanted answered was in general if current real
> life experience still holds true that the mutli-threaded
> single servlet model is still faster than one servlet per
> thread where the servlet is pooled.

For a properly written webapp, I doubt that you'll be able to measure much 
difference in CPU performance, other than the increased likelihood of operand 
cache misses when you have multiple active Servlet objects rather than just 
one.  There would be some increase in Java heap (and therefore RAM) usage as 
well, but given enough real memory that's not likely to be an issue.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to