Search Results

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. …
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 …
4
votes

Java performance with very large amounts of RAM

On the Sun JVM, you can use the option -XX:UseConcMarkSweepGC to turn on the Concurrent mark and sweep Collector, which will avoid the "stop the world" phases of the default GC algorithm almost com …
0
votes

How to cause soft references to be cleared in Java?

In a typical JVM implementation (SUN) you need to trigger a Full GC more than once to get the Softreferences cleaned. The reason for that is because Softreferences require the GC to do more work, b …
2
votes

Memory Allocation/Deallocation Bottleneck?

In Java (and potentially other languages with a decent GC implementation) allocating an object is very cheap. In the SUN JVM it only needs 10 CPU Cycles. A malloc in C/c++ is much more expensive, j …
3
votes

Know of any Java garbage collection log analysis tools?

gcviewer does what you want. …