Each example of Chronicle map needs to be given an "entries" size in the builder but I don't understand the impact this value has on a persisted map:
ChronicleMap
.of(Long.class, Point.class)
.averageValueSize(8)
.valueMarshaller(PointSerializer.getInstance())
.entries(999)
.createOrRecoverPersistedTo(new File("my-map"));
- What happens when I insert more than 999 entries into this map?
- Is this number defining the number of entries Chronicle or the memory mapped find should be holding in memory for me?