After testing and benchmarking lib1090 for our use case we found that some performance is lost when creating the hex representation frequently.
Replacing String.format with this method provided a notable performance improvement.
Our jmh benchmarks show that this method is around 8 times faster than String.format .
After testing and benchmarking lib1090 for our use case we found that some performance is lost when creating the hex representation frequently. Replacing
String.format
with this method provided a notable performance improvement.Our jmh benchmarks show that this method is around 8 times faster than
String.format
.