当前位置:网站首页>Serial serialold parnew of JVM garbage collector
Serial serialold parnew of JVM garbage collector
2022-07-06 17:16:00 【TiggerRun】
Garbage collector
Serial & SerialOld

- Serial It's a new generation of garbage collectors , Use
Copy algorithm - SerialOld It's the garbage collector of the old days , Use
Mark - Sorting algorithm - Serial and SerialOld yes
SerialThe garbage collector , There is only one thread to handle garbage collection , And isSTWOf .
ParNew

- ParNew It's actually Serial The parallel version of , Shared a lot of code
- ParNew Is a new generation of parallel garbage collectors
- ParNew Using the replication algorithm
ParNew Certain ratio Serial Are you efficient ?
In a multi-core environment ,ParNew Performance ratio of Serial high , Through parallel reductionSTWTime for
In a single core environment ,ParNew Its performance must be inferior to Serial
边栏推荐
- Brush questions during summer vacation, ouch ouch
- Flink 解析(六):Savepoints
- 复盘网鼎杯Re-Signal Writeup
- Which is more important for programming, practice or theory [there are some things recently, I don't have time to write an article, so I'll post an article on hydrology, and I'll fill in later]
- MySQL optimization notes
- Flink 解析(二):反压机制解析
- koa中间件
- The QT program compiled on CentOS lacks a MySQL driven solution
- Interview collection library
- Only learning C can live up to expectations top2 P1 variable
猜你喜欢
随机推荐
On the clever use of stream and map
redux使用说明
SQL调优小记
Train 100 pictures for 1 hour, and the style of the photos changes at will. There is a demo at the end of the article | siggraph 2021
唯有学C不负众望 TOP4 S1E6:数据类型
ByteDance technical Interviewer: what kind of candidate do I want to pick most
TCP的三次握手和四次挥手
暑假刷题嗷嗷嗷嗷
Alibaba cloud server builds SVN version Library
Activiti目录(五)驳回、重新发起、取消流程
Flink源码解读(二):JobGraph源码解读
After the subscript is used to assign a value to the string type, the cout output variable is empty.
[graduation project] QT from introduction to practice: realize imitation of QQ communication, which is also the last blog post in school.
Mongodb learning notes
Use of mongodb in node
JVM类加载子系统
Interpretation of Flink source code (III): Interpretation of executiongraph source code
Many papers on ByteDance have been selected into CVPR 2021, and the selected dry goods are here
README. txt
GCC error: terminate called after throwing an instance of 'std:: regex_ error‘ what(): regex









