Skip to content

Commit

Permalink
[docs update]增加一个GC调优案例
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb committed Dec 28, 2023
1 parent 1ff917b commit face018
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/java/jvm/jvm-in-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,8 @@ JVM 线上问题排查和性能调优也是面试常问的一个问题,尤其

这篇文章共 2w+ 字,详细介绍了 GC 基础,总结了 CMS GC 的一些常见问题分析与解决办法。

[给祖传系统做了点 GC 调优,暂停时间降低了 90% - 京东云技术团队 - 2023](https://juejin.cn/post/7311623433817571365)

这篇文章提到了一个在规则引擎系统中遇到的 GC(垃圾回收)问题,主要表现为系统在启动后发生了一次较长的 Young GC(年轻代垃圾回收)导致性能下降。经过分析,问题的核心在于动态对象年龄判定机制,它导致了过早的对象晋升,引起了长时间的垃圾回收。

<!-- @include: @article-footer.snippet.md -->

0 comments on commit face018

Please sign in to comment.