0
votes
ruby/ruby on rails memory leak detection
Switch to jruby and use the Eclipse Memory Analyzer.
There's no comparable tool for Ruby at the moment.
…
1
vote
Eclipse memory use
Hi all,
Instead of whining about how much memory Eclipse takes, just go ahead and analyze where the problem is. I might be just one plugin.
Check the blog here :
…
0
votes
Size of a byte in memory - Java
byte = 8bit =one byte defined by the Java Spec.
how much memory an byte array needs is not defined by the Spec, nor is defined how much a complex objects needs.
F …
0
votes
What is the memory consumption of an object in Java?
The rules about how much memory is consumed depend on the JVM implementation and the CPU architecture (32 bit versus 64 bit for example).
For the detailed rules for the SUN JVM check my ol …
0
votes
How do I discover what is in the permanent generation
See my blog post about thr permsize of Eclipse
In short the Memory Analyzer can doit, but you need the SAP JV …
0
votes
Updating from Java VM 5 to 6 gave a really big increase of memory consumption
you can check with jconsole
x86 is 32 bit.
If you really want to know where the memory is used get the Eclipse Memory Analyzer
…
0
votes
Best resource for memory footprint analysis for winforms app . .
Yourkit is better than the other suggested profilers.
…
0
votes
Does the -XX:+HeapDumpOnOutOfMemoryError option work with Oracle Application Server?
This option is specific to SUN/SAP/HP JVM's, and I doubt it would work if you use the JRockit VM. JRockit might also not support the hprof format at all, because it's not required by the Java spec. …
2
votes
Best way to profile memory usage in a Java application?
Several profiler's such as yourkit have API's for tracing memory allocations. Another option here are monitoring tools such as …
4
votes
How do you make your Java application memory efficient?
Normal "profilers" won't help you much, because you need an overview of all your "live" objects. You need heap dump analyzer. I recommend the Ec …
