Generating Java Mixed-Mode Flame Graphs

Overview I’ve seen Brendan Gregg’s talk on generating mixed-mode flame graphs  and I wanted to reproduce those flamegraphs for myself. Set…

Similar

How to use a Java HashSet by example

What is a HashSet A HashSet is an unordered collection containing unique elements. It has the standard collection operations Add, Remove, Contains, but since it uses a hash-based implementation, these operations are O(1) Learn with a Programming Question ... (more…)

Read more »