
jvm
文章平均质量分 68
xlnjulp
华为,去哪网,新浪微博
展开
-
Controlling GC pauses with the GarbageFirst Collector
a翻译 2014-05-02 18:04:30 · 1791 阅读 · 0 评论 -
Tuning Garbage Collection for Mission-Critical Java Applications
I recently had the opportunity to test and tune the performance of several shop and portal applications built with Java and running on the Sun/Oracle JVM, among them some of the most visited in German翻译 2014-05-07 11:07:53 · 1105 阅读 · 0 评论 -
Java Objects Memory Structure
原文地址Java Objects Memory StructureUpdate (December 18th, 2008): I've posted here an experimental library that implements Sizeof for Java.One thing about Java that has always bothered me,转载 2014-05-29 19:44:34 · 882 阅读 · 0 评论 -
HotSpot VM JIT
解释执行和编译执行解释执行是计算机语言的一种执行方式。由解释器(即编译器)现场解释执行,不生成目标程序。如BASIC语言的执行方式便是解释执行,一般解释执行效率较低,低于编译执行。 使用解释执行的程序我们一般称为解释程序。它将源语言直接作为源程序输入,解释执行解释一句后就提交计算机执行一句,并不形成目标程序。如在终端上打一条命令或语句,解释程序就立即将此语句解释成一条或几条指令并提交硬原创 2014-05-20 12:02:15 · 1269 阅读 · 0 评论 -
CMS Garbage Collector
在CMS(Concurrent Mark Sweep)之前的Parallel垃圾回收器重点关注的是原创 2014-05-15 11:32:25 · 1125 阅读 · 0 评论 -
Java ByteCode Part 2
yuanUnderstanding how Java code is compiled into byte code and executed on a Java Virtual Machine (JVM) is critical because it helps you understand what is happening as your program executes. This转载 2014-05-29 15:44:15 · 709 阅读 · 0 评论 -
Java ByteCode Part 1
Understanding how Java code is compiled into byte code and executed on a Java Virtual Machine (JVM) is critical because it helps you understand what is happening as your program executes. This underst转载 2014-05-29 15:35:14 · 991 阅读 · 0 评论 -
Mark Word
在java的对象头中,mark word主要用于表示对象当前的状态。原创 2014-06-19 20:43:27 · 3475 阅读 · 1 评论 -
Lightweight Synchronized
在java6之前,内置锁synchronized都是重量锁原创 2014-06-20 09:22:11 · 636 阅读 · 0 评论