由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - any free or trial JVM optimizer??
相关主题
array 在java里 是一定放在heap 吗?java memory problem with redhat enterprise
问一个GC的问题Q: load a profiler in Tomcat on Solaris
Help: how to use Eclipse as C++ IDE in Linux?out of memory
what's inside an java object?怎样让java 程序运行快?
How to know the size of a java object ?Java crash
Stack Frame of your JVM implementationWhat A DESIGN!
The shape of JVM stack frameTIJ上写错了?
java内存泄露问题线程hardy会一直等待下去么?
相关话题的讨论汇总
话题: jvm话题: optimizer话题: trial话题: memory话题: profiler
进入Java版参与讨论
1 (共1页)
t****r
发帖数: 25
1
damn i hate OutOfMemory error.
g*****g
发帖数: 34805
2
what do you mean? try -Xmx256M or more

【在 t****r 的大作中提到】
: damn i hate OutOfMemory error.
t****r
发帖数: 25
3
no use. i set java heap to 1024M already.. sigh//

【在 g*****g 的大作中提到】
: what do you mean? try -Xmx256M or more
g*****g
发帖数: 34805
4
Then it's probably your problem, you may have very serious
memory leak. Check where you load big objects, are they
stored in some static and long-life collection objects and
were never manually removed?

【在 t****r 的大作中提到】
: no use. i set java heap to 1024M already.. sigh//
t****r
发帖数: 25
5
yeah... i have sth 20MB obj in memory.

【在 g*****g 的大作中提到】
: Then it's probably your problem, you may have very serious
: memory leak. Check where you load big objects, are they
: stored in some static and long-life collection objects and
: were never manually removed?

m******t
发帖数: 2416
6
This may be a good starting point for you:
http://www.manageability.org/blog/stuff/open-source-profilers-for-java
And of course, there's always the Poor Man's Memory Profiler,
i.e., "java -Xloggc:c:\gc.log". 8-)
t****r
发帖数: 25
7
cool... let me take a look at the link...

【在 m******t 的大作中提到】
: This may be a good starting point for you:
: http://www.manageability.org/blog/stuff/open-source-profilers-for-java
: And of course, there's always the Poor Man's Memory Profiler,
: i.e., "java -Xloggc:c:\gc.log". 8-)

p***p
发帖数: 559
8
http://dev2dev.bea.com/pub/a/2006/05/voip-jvm-tuning.html?page=1

【在 t****r 的大作中提到】
: cool... let me take a look at the link...
A**o
发帖数: 1550
9
so run a profiler and see the calling stacks.
you might have something doing recursive calls but the logic for
stopping it might be wrong.

【在 t****r 的大作中提到】
: damn i hate OutOfMemory error.
1 (共1页)
进入Java版参与讨论
相关主题
线程hardy会一直等待下去么?How to know the size of a java object ?
Java Object 一定在 Heap 里吗Stack Frame of your JVM implementation
Static就是个混球The shape of JVM stack frame
new thread object 占的是heap还是stack?java内存泄露问题
array 在java里 是一定放在heap 吗?java memory problem with redhat enterprise
问一个GC的问题Q: load a profiler in Tomcat on Solaris
Help: how to use Eclipse as C++ IDE in Linux?out of memory
what's inside an java object?怎样让java 程序运行快?
相关话题的讨论汇总
话题: jvm话题: optimizer话题: trial话题: memory话题: profiler