...讲述隐藏类(hidden classes),内置高速缓存(inline caching),准确分代垃圾收集(precise generational garbage collection),和快照技术(snapshotting)的细节。讲座的最后部分将会讨论一些新的提议,如何将V8性能提升到下一个高度。
基于1个网页-相关网页
SUN的JVM 1.3.1使用分代垃圾收集算法。
SUN's JVM 1.3.1 USES a generational garbage collection algorithm.
分代垃圾收集器把堆分成多代;多数JVM使用两代,“年轻代”和“年老代”。
A generational garbage collector divides the heap into multiple generations; most JVMs use two generations, a "young" and an "old" generation.
JD K 1.2及以后版本所使用的分代垃圾收集器提供了比早期JDK所使用的标记-清除-整理收集器好得多的分配和收集性能。
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.
应用推荐