DEV Community

Discussion on: 9 tips to Increase your Java performance ☕️ 🚀 🚶‍♂️

Collapse
 
ujaehrig profile image
Ulf Jährig

The "use StringBuilder" is much too general. Maybe have a look at the following talk by Heinz Kabutz:
youtu.be/z3yu1kjtcok
He talks an hours about Java Strings and performance.

For performance surprises, the following talk is also a recommendation: youtu.be/fN3MtD-lNHc

Its conclusion, which I support, is: Performance is full of surprises, write clean code. If necessary focus on the hot spots.