How to find native memory leaks in Java

preview_player
Показать описание
Normally a memory leak in Java refers to heap memory that cannot be garbage collected for some reason. However, the good old native memory leaks are still with us and they can be as sinister as ever. Native code is probably the most common cause, but sometimes the JVM itself is the culprit. When that is the case, how can you track it down? What tools are there? This session covers a real-world memory leak in the JVM and how it was found and eventually fixed
Presented in English.

Erik Wramner, CodeMint
Рекомендации по теме
Комментарии
Автор

Thanks, this video filled in some gaps in knowledge about actually using the tools to find a native memory leak.

confuse