map.put(i, i);
map.get(i); //populate near cache
map.get(i); //generate near cache hits
}
NearCacheStats stats = map.getLocalMapStats().getNearCacheStats();
System.out.println("stats = " + stats);
assertEquals(size, stats.getOwnedEntryCount());
assertEquals(size, stats.getHits());
}