GC algorithm

2011-05-23 Thread vicky b
HI, How can i come to know the GC algorithm used in tomcat... and all GC configuarations.. -- *Thanks Regards Vickyb *

RE: GC algorithm

2011-05-23 Thread Caldarale, Charles R
From: vicky b [mailto:vickyb2...@gmail.com] Subject: GC algorithm How can i come to know the GC algorithm used in tomcat... That's easy: none. GC algorithms are the province of the JVM, not Tomcat. and all GC configuarations.. Read the JVM doc. - Chuck THIS COMMUNICATION MAY

Re: GC algorithm

2011-05-23 Thread vicky b
...@gmail.com] Subject: GC algorithm How can i come to know the GC algorithm used in tomcat... That's easy: none. GC algorithms are the province of the JVM, not Tomcat. and all GC configuarations.. Read the JVM doc. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE

RE: GC algorithm

2011-05-23 Thread Caldarale, Charles R
From: vicky b [mailto:vickyb2...@gmail.com] Subject: Re: GC algorithm then why do i see a difference in behaviour for tomcat 6 and tomcat 7 when i undeploy my app the objects that are collected in tomcat6 are not collected in tomcat7? Because the objects are no longer reachable in your

Re: GC algorithm

2011-05-23 Thread vicky b
wrote: From: vicky b [mailto:vickyb2...@gmail.com] Subject: Re: GC algorithm then why do i see a difference in behaviour for tomcat 6 and tomcat 7 when i undeploy my app the objects that are collected in tomcat6 are not collected in tomcat7? Because the objects are no longer reachable

RE: GC algorithm

2011-05-23 Thread Caldarale, Charles R
From: vicky b [mailto:vickyb2...@gmail.com] Subject: Re: GC algorithm why the difference. To repeat myself: Because the objects are no longer reachable in your Tomcat 6 environment but are in Tomcat 7. Nothing to do with the GC algorithm employed. Analyze the heap and find out what