Testing out off-heap caching with ChronicleMap. Will this code create an off-heap in-memory map?
chronicleMap = ChronicleMapBuilder.of(String.class, ByteBuffer.class)
.entries(aMaxSize)
.averageKeySize(100)
.averageValueSize(1000)
.create();