com.github.marschall.stringdeduplicationheapstatistics.StringDeduplicationHeapStatistics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of string-deduplication-heap-statistics Show documentation
Show all versions of string-deduplication-heap-statistics Show documentation
Parses heap dumps to estimate the effect of -XX:+UseStringDeduplication on heap footprint.
The newest version!
package com.github.marschall.stringdeduplicationheapstatistics;
public record StringDeduplicationHeapStatistics(long stringsDeduplicated, long bytesSaved) {
}