How to reduce GC time(Trade-off between application throughput and latency)
What are the expensive things in the GC mechanism?
- Copy between young<->Old generation

- If we can, we should prevent the increasing size of Old generation

- Consider soft real time goal — GCPauseIntervalMillis and MaxGCPauseMillis


Referer