Friday, January 11, 2019

Java performance tuning

Articles

1. Simple tuning : link

2. How to write memory efficient code - Youtube video link

Notes:

* Check the current log level first
This recommendation should be obvious, but unfortunately, you can find lots of code that ignores it. Before you create a debug message, you should always check the current log level first. Otherwise, you might create a String with your log message that will be ignored afterward.

No comments:

Post a Comment

Thank you for your comment!