Forum Post: Re: Memory-leak?

  • Thread starter Thread starter James Arsenault
  • Start date Start date
Status
Not open for further replies.
J

James Arsenault

Guest
When looking at Java memory usage you need to be careful how to interpret the process size. Excluding actually hitting an OOM condition, the process size does not definitively identify how much memory is used. It's all subject to Java garbage collection. You could have a large process size but the heap usage is low; that just means Java hasn't freed the unused heap space.

Continue reading...
 
Status
Not open for further replies.
Back
Top