public class HotspotTracker { private final Map<String, Long> countsById = new HashMap<>(); public void track(String id) { long oldCount = countsById.getOrDefault(id, 0L); countsById.put(id, oldCount + 1); } }