GC, or garbage collection, is a basic part of the JVM. This is the method by which the heap is maintained. Objects are allocated onto the heap until there is not enough contiguous space to satisfy the request. You then have an allocation failure and a garbage collection cycle to free up space in an attempt to satisfy the request.
Verbosegc is simply a trace of garbage collection activity. You can turn this on in the admin console. Instructions can be found at:
www-01.ibm.com/support/docview.wss?&uid=...By default, the verbosegc output goes to native_stderr.log when using the IBM SDK and native_stdout.log when running on Solaris
--------------------------------
Posted By: cathy at Aug 11 2009 11:55PM