November 2017
Intermediate to advanced
398 pages
10h 14m
English
Another important area to look into is memory profiling. Every application is going to use memory and hence it is important to find an optimum way of using this resource. Memory leaks can make your application crawl and eventually crash on you. As we discussed earlier, Java is blessed with a Garbage Collector (GC), which clears up unused memory. However, if your application is allocating memory faster than GC can collect, then you may see some visible slowness.
Using memory profiling, you can uncover the areas of your code which are causing memory leaks. Memory profiling will let you do the following:
Read now
Unlock full access