1
vote
How do I make sure my objects get garbage collected?
Some suggestions:
Unlimited maps used as caches, especially when static
ThreadLocals in server apps, because the threads usually do not die, so the ThreadLocal is not freed …
0
votes
Strange garbage collection behaviour with Websphere Portal Server
Only a hint... once we had a project that suffered major GC problems (Websphere and IBM JDK) due to heap fragmentation. At the end, we added a JDK switch to force heap compaction.
The Sun …
0
votes
Does it help GC to null local variables in Java
If you don't need large objects in your local scope anymore, you can give the JVM a hint and set the reference NULL.
public void foobar()
{
List<SomeObject> dataList = ne …
0
votes
How do I discover what is in the permanent generation
Do you have a specific problem to solve? The use of String.intern() is one of the typical causes for permgen problems. Additionally projects with a lot of classes also have permgen problems.
…
0
votes
healthy garbage collection metrics?
I agree that up to 10% is usually fine for GC time. In case you have an old gen problem, try to add the -XX:NewSize=300m parameter, where you can increase the young generation. Thi …
2
votes
How to ensure JVM starts with value of Xms
If I am not mistaken, Java tries to get the reservation for the memory from the OS. So if you ask for 3 GB as Xms, Java will ask the OS, if this is available but not start with all the memory right …
0
votes
Can Sun JVM handle gigantic heap sizes without problems, and how?
Only to add some more switches I would use by default: -Xms55g can help to reduce the rampup time because it frees Java from the need to check if it can fall back to the initial size and allows als …
