Jouko Johansson wrote:
> I configured the fork-setting to true and the load went down from 10 to
> 1.5 so the configuration helped a lot. Also the
> server availibility was enhanced. Is there still another configuration
> parameter which could decrease the load under 1.0 or do
> we need to buy better hardware ;)
Why did you disable tag pooling? enablePooling is enabled by default. Did
you try enabling it? In addition, what happens if you set development to
false?
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
<init-param>
<param-name>logVerbosityLevel</param-name>
<param-value>WARNING</param-value>
</init-param>
<init-param>
<param-name>fork</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>development</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>3</load-on-startup>
</servlet>
-Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]