RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Dale, Matt
This is expected behaviour. The heap will not grow if the memory required can be gained through a garbage collection. The heap will only grow if after a garbage collection it still cannot allocate the required memory or is over a certain percentage (I forget what the default is). I would

RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Quinten Verheyen
(ratio's etc.) using jvm 1.4.2 http://java.sun.com/docs/hotspot/gc1.4.2/index.html Q -Original Message- From: Dale, Matt [mailto:[EMAIL PROTECTED] Sent: 20 April 2005 15:24 To: Tomcat Users List Subject: RE: Heap not expanding beyond -Xms512m This is expected behaviour. The heap

RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Quinten Verheyen
Ooops, I meant -Xmx512 ;) -Original Message- From: Quinten Verheyen Sent: 20 April 2005 15:32 To: 'Tomcat Users List' Subject: RE: Heap not expanding beyond -Xms512m I agree, it's always a good idea to let the JVM do what it is supposed to do instead of creating a growing

RE: Heap not expanding beyond -Xms512m

2005-04-20 Thread Guillaume Lahitette
Quinten, Matt, Thank you for your feedback and the JVM reference. Guillaume - Original Message - From: Quinten Verheyen [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: RE: Heap not expanding beyond -Xms512m Date: Wed, 20 Apr 2005 15:32:12 +0200 I