`
boy00fly
  • 浏览: 197717 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Memory Management in the Java HotSpot Virtual Machine翻译整理

阅读更多
本书的目录
1 Introduction(简介,未翻译)
2 Explicit vs. Automatic Memory Management(显示内存管理VS自动内存管理,未翻译)
3 Garbage Collection Concepts(垃圾收集概念)
  Desirable Garbage Collector Characteristics(理想垃圾收集器的特点)
  Design Choices(设计选择)
  Performance Metrics(性能标准)
  Generational Collection(分代收集)
4 Garbage Collectors in the J2SE 5.0 HotSpot JVM(J2SE 5.0 HotSpot Java虚拟机垃圾收集器)
  Hotspot Generations(HotSpot分代)
  Garbage Collection Types(垃圾收集类型)
  Fast Allocation(快速分配)
  Serial Collector(串行收集器)
  Parallel Collector(并行收集器)
  Parallel Compacting Collector(并行压缩收集器)
  Concurrent Mark-Sweep (CMS) Collector(并发标记清除收集器)
5 Ergonomics -- Automatic Selections and Behavior Tuning(Ergonomics -- 自动选择和性能调优)
  Automatic Selection of Collector, Heap Sizes, and Virtual Machine(自动选择收集器、堆内存以及虚拟机)
  Behavior-based Parallel Collector Tuning (基于行为的并行收集器调优)
6 Recommendations(最佳实践)
  When to Select a Different Garbage Collector(何时选择一个不同的垃圾收集器)
  Heap Sizing(堆大小)
  Tuning Strategy for the Parallel Collector(并行收集器的调优策略)
  What to Do about OutOfMemoryError(如何处理内存溢出错误)
7 Tools to Evaluate Garbage Collection Performance(垃圾回收性能评测工具)
  –XX:+PrintGCDetails Command Line Option(-XX:+PrintGCDetails命令行选项)
  –XX:+PrintGCTimeStamps Command Line Option(-XX:+PrintGCTimeStamps命令行选项)
  jmap
  jstat
  HPROF: Heap Profiler
  HAT: Heap Analysis Tool(HAT:堆分析工具)
8 Key Options Related to Garbage Collection(垃圾收集的关键字选项,未翻译)
9 For More Information (更多信息)


翻译这篇文档主要是自己的个人兴趣,鉴于个人水平有限,如有不足之处还望指正!
备注:这篇文档翻译是中英文对照的,方便各位同学指正!
分享到:
评论
1 楼 xjj2000 2012-05-21  
支持博主!!

相关推荐

    Memory Management in the Java HotSpot Virtual Machine.pdf

    本文档提供了Java HotSpot虚拟机(JVM)中内存管理的广泛概述,特别是在Sun公司的Java 2平台标准版(J2SE)5.0版本的发布中。文档描述了可供使用的垃圾收集器(Garbage Collectors),给出了关于如何选择和配置收集...

    翻译《Memory Management in the Java HotSpot™ Virtual Machine》

    《Memory Management in the Java HotSpot™ Virtual Machine》一文深入探讨了Java HotSpot虚拟机中的内存管理机制,这是Java性能优化的关键领域。HotSpot虚拟机是Oracle JDK和JRE的一部分,以其高性能和优化能力而...

    jdk1.7_80 window.64

    1. **JVM (Java Virtual Machine):** - JDK 1.7_80 includes the 64-bit HotSpot JVM, which is responsible for executing Java bytecode. It provides just-in-time (JIT) compilation for faster runtime ...

    java 虚拟机实现 相关资料

    Java虚拟机(JVM,Java Virtual Machine)是Java平台的核心组成部分,它负责执行Java程序,实现了Java语言的“一次编写,到处运行”特性。在深入理解JVM之前,我们需要了解几个基本概念: 1. **字节码(Bytecode)*...

    JVM性能优化

    JVM(Java Virtual Machine)是运行Java字节码的虚拟机环境,它为Java应用程序提供了运行时环境。JVM的核心功能包括内存管理、垃圾回收(GC)、代码解释与编译等。 - **HotSpot堆区(JDK6)**:在JDK6版本中,HotSpot...

Global site tag (gtag.js) - Google Analytics