Java Basic
文章平均质量分 83
tangbomaozero
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Memory space manipulating in Java(Section three:Basic Knowledge of Java Process Heap )
Manipulate your Java process heap – Basic KnowledgeAs I have mentioned at the beginning of Process Memory Model on AIX section, Java application in running itself is normally a process which most li原创 2006-09-04 18:23:00 · 2854 阅读 · 0 评论 -
Memory space manipulating in Java(Section four:Problems Resolving - part one)
In this section, we are going to take up several typical problems associate with JVM for discussion. I will try to explain each problem with a sample I have met before, several commands was used durin原创 2006-10-31 10:20:00 · 2004 阅读 · 0 评论 -
Memory space manipulating in Java(Section two:Process Memory Model on AIX part one-Terminologies)
I will focus on how 32-bit application allocates its heap in AIX. As to 64-bit application, there will be no need to juggle with the limited number of segments any more as the 64-bit user process ca原创 2006-07-18 16:31:00 · 3026 阅读 · 0 评论 -
Memory space manipulating in Java(Section one:Basic Concepts in Java)
Introduction After reading several articles on memory handling in Java in AIX, I decided to write something about this topic. For purposes of doing a summary for myself, also I hope it could be hel原创 2006-07-14 17:56:00 · 2723 阅读 · 0 评论 -
Memory space manipulating in Java(Section two:Process Memory Model on AIX part two-Default Memory Model)
Default 32-bit Process Memory Model32-bit applications on AIX have an address space of 4 GB (2**32=4G), with virtual addresses ranging from 0x00000000 through 0xFFFFFFFF. AIX divides this address s原创 2006-08-03 11:11:00 · 3043 阅读 · 0 评论 -
Memory space manipulating in Java(Section two:Process Memory Model on AIX part three-The Large & Very Large Memory Model)
The Large Address-Space ModelBecause the system places user data, heap, and stack within the program data segment (segment 0x2), the system limits the maximum amount of stack, heap, and static data原创 2006-08-10 10:32:00 · 3041 阅读 · 0 评论 -
Memory space manipulating in Java(Section four:Problems Resolving - part two)
2. Hang2-1. Phenomenon You can not get any response from your application even the process is still alive. (Check it with ps command) I have experienced with such a case: 1) There is con原创 2006-12-21 10:20:00 · 2571 阅读 · 0 评论 -
Memory space manipulating in Java(Section four:Problems Resolving - part three)
3. OutOfMemory3-1. Phenomenon You got an OutOfMemory Error be outputted to log file, and the JVM fallen down. It could be caused by either running out of Java Heap or Native Heap. (OutOfMem原创 2007-01-09 15:19:00 · 2351 阅读 · 0 评论 -
Memory space manipulating in Java(Section four:Problems Resolving - part four)
4. Fragmentation4-1. Phenomenon Even there are enough space to be allocated, JVM got down with an OutOfMemory Error without generating a core file. As it may also depend on usage of your applic原创 2007-04-23 10:20:00 · 1648 阅读 · 0 评论
分享