-
Recent Posts
Recent Comments
- keiki on SimpleDateFormat in multithreaded environment
- EugeneChung on SimpleDateFormat in multithreaded environment
- keiki on Autoboxing: Traps and Advantages
- John-Paul Cunliffe on Autoboxing: Traps and Advantages
- ZeeMan on Unknown Java Features Part 1: BitSet
Archives
Categories
Meta
Tags
- Anti-Pattern
- autoboxing
- benchmark
- BitSet
- book
- boolean
- boolean array
- cache
- Calendar
- clean code
- code coverage
- common
- datetime
- FIFO
- Formatting
- harness
- hello world
- Integer
- JaCoCo
- Java
- Java 7
- Java 8
- JAXB
- jmh
- jodatime
- LinkedHashMap
- Linux
- logging
- LRU
- maven
- memory
- micro
- micro benchmarking
- multithreading
- Pattern
- Performance
- SimpleDateFormat
- sonar
- static
- String
- StringBuilder
- tips
- Tooling
- unknown features
- XML
-
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy
Tag Archives: benchmark
Autoboxing Performance
Preface Because of my previous post about autoboxing I get many search queries about autoboxing performance. Now I’m curious, too. So let’s get ready for some benchmarks. When we talk about boxing performance, then we always have two sides. Throughput … Continue reading
micro benchmarking with openjdks jmh
Micro benchmarking in Java What is micro benchmarking? It’s for benchmarking very small parts of logic. Small like e.g. arraylist.add or string.split. Why do we have a problem with micro benchmarking? Often you encounter some blog post where someone claims that … Continue reading