GGGGCCCC
Evaluating and improving remembered sets in the HotSpot G1 garbage collector
http://www.diva-portal.se/smash/get/diva2:754515/FULLTEXT01.pdf
http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/G1GettingStarted/index.html
A Generational Mostly-concurrent Garbage Collector
http://101.96.10.63/www.cs.ucsb.edu/~ckrintz/racelab/gc/papers/detlefs-generational.pdf
JVM源码分析之YGC的来龙去脉
http://www.jianshu.com/p/9af1a63a33c3
G1 Companion
https://www.thesisscientist.com/docs/BeatixDukes/ca55d0ff-9c95-4124-b115-343b408b9a7b.pdf
g1 paper
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.63.6386&rep=rep1&type=pdf
https://www.slideshare.net/AndreiPangin/everything-you-wanted-to-know-about-stack-traces-and-heap-dumps
http://lovestblog.cn/blog/2016/04/19/stack-over-flow/
This blog post
http://psy-lob-saw.blogspot.ru/2016/02/why-most-sampling-java-profilers-are.html
http://blog.ragozin.info/2012/10/safepoints-in-hotspot-jvm.html
安全点
http://m.blog.csdn.net/iter_zc/article/details/41892567
http://hsmemo.github.io/
http://www.cliffc.org/blog/2015/02/22/how-does-java-both-optimize-hot-loops-and-allow-debugging/
G1对象拷贝
G1ParCopyHelper::copy_to_survivor_space
minor GC
http://hsmemo.github.io/articles/no2935YzN.html
Major or Full GC?
HotSpot VM Serial GC的一个问题
JVM源码分析之YGC的来龙去脉
http://www.jianshu.com/p/9af1a63a33c3
现代JVM中的Safe Region和Safe Point到底是如何定义和划分的?
https://www.zhihu.com/question/29268019
JVM源码分析之安全点safepoint
http://www.jianshu.com/p/c79c5e02ebe6
http://blog.csdn.net/column/details/talk-about-jvm.html
http://www.nminoru.jp/~nminoru/data/201202/JVM-Reading-CMS-GC.pdf
Understanding GC pauses in JVM, HotSpot's minor GC
http://blog.ragozin.info/2012/10/safepoints-in-hotspot-jvm.html
G1
http://hg.openjdk.java.net/jdk9/jdk9/hotspot/file/b756e7a2ec33/src/share/vm/gc/g1/
write barrier or store check
http://www.cs.ucsb.edu/~urs/oocsb/papers/write-barrier.pdf
Older-first Garbage Collection in Practice:Evaluation in a Java Virtual Machine
http://www.cs.utexas.edu/users/speedway/DaCapo/papers/of-msp-2002.pdf
GGGGCCCC的更多相关文章
随机推荐
- RHEL6.5 grub修复测试
RHEL6.5 grub修复测试 1.删除系统中的grub.conf配置文件,然后重启系统#rm -f /boot/grub/grub.conf#reboot 2.重启后,系统进入到grub界面:gr ...
- Dapper 的输出参数使用示范
-- 普通SQL 示范-- Queries with output parameters. Hide Shrink Copy Code // output parameters // the para ...
- Arduino和C51开发OLED显示屏
技术:51单片机.Arduino.OLED显示屏.U8glib 概述 OLED显示屏常常用作为智能产品的显示设备,本文简单介绍OLED显示屏的使用方法. 详细 代码下载:http://www.de ...
- Condition Variables
Condition Variables Condition variables are synchronization primitives that enable threads to wait u ...
- 【TP3.2.X】linux环境下TP3.2.X的各个目录权限
1.将整个项目文件 所属设置成www:www,单个文件夹 755 2.Application 单文件夹是755 3.Runtime.Public .Uploads 均是 -R 777
- ios中xml和html解析(封装)
下载地址 http://pan.baidu.com/share/link?shareid=2902188921&uk=923776187 GDataXML和TFHpple配置是一样的(配置方 ...
- 横竖屏切换时不销毁当前activity 和 锁定屏幕
首先在Mainifest.xml的Activity元素中加入android:configChanges="orientation|keyboardHidden"属性 <act ...
- PHP中使用 JKS(Java Key Store)的方法
PHP语言无法直接读取 JKS中的密钥,需要通过以下方法进行转换 本例以JKS中的私钥为例 首先 使用 KeyStore Explorer工具,打开JKS文件 ,此时可能需要输入 JKS密码 对私钥进 ...
- Android应用截图方法
在Android应用开发过程中,可能会遇到需要对整个界面或者某一部分进行截图的需求.Android中对View的截图也有很多中方式: 使用DrawingCache 直接调用View.draw Draw ...
- SQL中实现SPLIT函数几种方法
例1 代码如下 复制代码 create function f_split(@SourceSql varchar(8000),@StrSeprate varchar(10))returns @temp ...