8 05, 2018

Performance in Detail: Long vs. Double in Java

By |May 8th, 2018|

A few weeks ago, we stumbled upon an interesting problem during a code refactoring. After changing the data type of an attribute from List<Long> to List<Double>, we noticed some severe performance issues. Our application [...]

11 02, 2018

Continuous Benchmarking with JMH and JUnit

By |February 11th, 2018|

"Measuring Tape" by Jamiesrabbits is licensed under CC BY 2.0 Why benchmarks? When writing code, you are confronted with countless small decisions all the time. “Should I use a HashMap or a ConcurrentHashMap?” “Maybe [...]

Go to Top