Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Java: How often is the GC executed in JVM? Every second? Every minute? Or is it random depending on the memory size? I just want to have an idea.

Thank you.

share|improve this question

2 Answers

up vote 8 down vote accepted

It depends on the memory usage and the heap in which the objects are stored. Look at this

http://javarevisited.blogspot.com/2011/04/garbage-collection-in-java.html

It does not depend on time. It only depends on the new memory requirements and available memory.

share|improve this answer
...and also of course, the garbage collection options which have been specified! – berry120 Aug 2 '11 at 8:37
Thank you verry much. – Reacen Aug 2 '11 at 8:43
1  
@berry....yes but those options do not guarantee that gc will be invoked. It ultimately depends on jvm only. – Sumit Aug 2 '11 at 8:48

See this article for some calculations. It really depends on the application and available/needed memory.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.