I have a Java application which has some performance issues and someone recommend me to run it in verbose:gc mode.
This has been done, but I don’t know how to interpret the logging.
Is it possible to explain me what it all means or to advise me as what I can do to increase performance?
Output log can be found on : http://pastebin.com/uDNPEGcd
Thanks in advance,
Kind regards,
Maarten
verbose:gcprints right after each gc collection and prints details about each generation memory details. Here is blog on how to read verbose gcIf you are trying to look for memory leak, verbose:gc may not be enough. Use some visualization tools like
jhat(or)visualvmetc.,