Re: Basic question about Apache+Tomcat Memory usage

2001-09-07 Thread Craig R. McClanahan
Are you asking about CPU usage or memory usage? For CPU, the first time you access a page (or whenever you update it), Tomcat has to translate the page into Java and then compile it. This is a pretty CPU-intensive activity, but it only happens once. For memory, there is a lot to understand

Re: Basic question about Apache+Tomcat Memory usage

2001-09-07 Thread srini
: Basic question about Apache+Tomcat Memory usage Are you asking about CPU usage or memory usage? For CPU, the first time you access a page (or whenever you update it), Tomcat has to translate the page into Java and then compile it. This is a pretty CPU-intensive activity, but it only happens

Re: Basic question about Apache+Tomcat Memory usage

2001-09-07 Thread Craig R. McClanahan
On Fri, 7 Sep 2001, srini wrote: Date: Fri, 7 Sep 2001 12:38:11 -0700 From: srini [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Basic question about Apache+Tomcat Memory usage ho sorry Craig i was talking about CPU usage. I know first time

Re: Basic question about Apache+Tomcat Memory usage

2001-09-07 Thread Pier Fumagalli
srini [EMAIL PROTECTED] wrote: ho sorry Craig i was talking about CPU usage. I know first time it translates JSP page in to Java and compiles it. But is it that much intensive to eat 80-100% of memory ?? It seem to me you're confusing again CPU usage with memory... 80%/100% IS the CPU

Re: Basic question about Apache+Tomcat Memory usage

2001-09-07 Thread Jonathan Eric Miller
You mean the first time you access the JSP after starting Tomcat? This is because the JSP has to be compiled into a class before it can be executed. Jon - Original Message - From: srini [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 07, 2001 2:14 PM Subject: Basic