转载:如何看懂gc日志
转自:http://stackoverflow.com/questions/895444/java-garbage-collection-log-messages
PSYoungGen refers to the garbage collector in use for the minor collection. PS stands for Parallel Scavenge.
The first set of numbers are the before/after sizes of the young generation and the second set are for the entire heap. (Diagnosing a Garbage Collection problem details the format)
The name indicates the generation and collector in question, the second set are for the entire heap.
An example of an associated full GC also shows the collectors used for the old and permanent generations:
8109.128: [GC [PSYoungGen: 109884K->14201K(139904K)] 691015K->595332K(1119040K), 0.0454530 secs]