Chronicle-Map
Chronicle-Map copied to clipboard
overwrite or time-to-live feature
does ChronicleMap have the ability to overwrite when data is full? or can it has time-to-live, that when the time exceeds that value removes from entries?
this.requestIdLog = ChronicleMap.of(String.class, String.class)
.name("requestId-clientId-log-map")
.entries(20_000_000)
.averageKeySize(1)
.averageValue(new String())
.create();