1
vote
Speeding Up Java
Don't optimize blindly.
Use Yourkit or any other good profiler to find out the "hotspots" in your application.
You need not only take a look a CPU time, but also at how much memory is all …
2
votes
Which Java Profiling tool do you use and which tool you think is the best?
Yourkit is pretty good for CPU analysis.
For memory usage analsis using heap dumps use http://www.eclipse.org/mat/
…
4
votes
Does anyone here have a favorite memory profiling/memory leak tool they like to use for their java webapps?
The Eclipse Memory Analyzer is the best tool for analysing the memory usage of java applications
…
1
vote
How can I see what is in my heap in Java?
Use the Eclipse Memory Analyzer
There's no other tool that I'm aware of any tool that comes close to it's functionality and performa …
0
votes
Problem with synchronizing on String objects?
Use a decent caching framework such as ehcache.
Implementing a good cache is not as easy as some people believe.
Regar …
0
votes
How do I analyze a .hprof file?
Just get the Eclipse Memory Analyzer. There's nothing better out there and it's free.
JHAT is only usable for "toy applications" …
3
votes
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
Yes, with -Xmx you can configure more memory for you JVM.
To be sure that you don't leak or waste memory. Take a heap dump and use the Eclipse …
1
vote
Which Java profiler is better: JProfiler or YourKit?
Yourkit
It's low overhead, stable, easy to install on the JVM to be profiled (just one dll) and powerful.
For analyzing heap dumps it's the only profiler that comes close to the …
0
votes
Possible Memory leak in Number of Loaded classes in Java Application
Use the Eclipse Memory Analyzer to check for duplicated classes and memory leaks. It might happen that the same class gets loaded more than …
0
votes
Best server Performance Monitoring Tool for Java Servers
Dynatrace is a great monitoring tool.
Jinspire has also a tool that looks very promisin …
7
votes
Java very large heap sizes
12Gb should be no problem with a decent JVM implementation such as Sun's Hotspot.
I would advice you to use the Concurrent Mark and Sweep colllector ( -XX:+UseConcMarkSweepGC) when using a SUN VM. …
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 …
