We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f56b0e3 commit b034871Copy full SHA for b034871
Notes/jvm.md
@@ -38,6 +38,8 @@ JAVA中可作为GC Roots的对象包括:
38
39
##### **old generation**
40
1. Concurrent Mark Sweep(mark-sweep as title):部分 stop the world,多线程收集
41
+优点:并发搜集,低停顿
42
+缺点:对CPU资源敏感, 无法处理浮动垃圾(Floating Garbage),收集结束会产生大量的碎片
43
2. Serial Old(mark-compact): stop the world,单线程收集,CMS备选方案,GC日志关键字:Tenured
44
3. Parallel Old(mark-compact):stop the world,多线程收集,只能和Parallel Scavenge组合使用,GC日志关键字:ParOldGen
45
0 commit comments