One of the advantages of generational collection is that it can make garbage collection pauses shorter by not collecting all generations at once.
分代收集的一个优点是它不同时收集所有的代,因此可以使垃圾收集暂停更短。
Generational garbage collection turns out to be very effective, although it introduces several additional bookkeeping requirements at runtime.
分代收集证明是非常高效的,尽管在运行时它需要更多的簿记。
Finally, there are hybrid collectors, such as the generational collector employed by the 1.2 and later JDKs, which use different collection algorithms on different areas of the heap.
最后,还有混合型的收集器,如1.2和以后版本的JDK使用的分代收集器,它对堆的不同区域使用不同的收集算法。
To address this problem, generational collectors must explicitly track references from older objects to younger objects and add these old-to-young references into the root set of the minor collection.
为了解决这个问题,分代收集器必须显式地跟踪从老对象到年轻对象的引用并将这些老到年轻的引用加入到小的收集的根集中。
High volume applications that actively create many temporary objects and run with a high number of users generally benefit from having generational garbage collection turned on.
一般来说,启用生成的垃圾收集将使积极创建许多临时对象并运行有大量用户的大容量应用程序受益。
You should also analyze GC logs to understand how frequently the tenured space gets collected; an optimal generational application will have very infrequent collection in the tenured space.
还应该分析gc日志,以了解年老代空间回收的频率;最优的分代应用程序进行年老代空间回收操作的频率应该非常低。
The generational collector employed by JDK 1.2 and later offers far better allocation and collection performance than the mark-sweep-compact collector used by earlier JDKs.
JD K 1.2及以后版本所使用的分代垃圾收集器提供了比早期JDK所使用的标记-清除-整理收集器好得多的分配和收集性能。
A generational collector is free to use a different collection strategy for different generations and perform garbage collection on the generations separately.
分代收集器对不同的代可以自由使用不同的收集策略,对各代分别进行垃圾收集。
Introduced with JVM v1.3 for all operating system platforms is the concept of generational garbage collection.
针对所有操作系统平台的生成的垃圾收集(generational garbage collection)概念在JVMV1.3中被引入。
Gencon: Uses a generational concurrent style of collection.
gencon:使用分代并发收集样式。
SUN's JVM 1.3.1 USES a generational garbage collection algorithm.
SUN的JVM1.3.1使用分代垃圾收集算法。
SUN's JVM 1.3.1 USES a generational garbage collection algorithm.
SUN的JVM1.3.1使用分代垃圾收集算法。
应用推荐