AtomicLong alValue = new AtomicLong();
AtomicLong alKey = new AtomicLong();
int runs = 3000000;
SharedHashMapBuilder builder = new SharedHashMapBuilder().entries(runs);
String shmPath = System.getProperty("java.io.tmpdir") + System.getProperty("file.separator") + "SHMTestIterator1";
SharedHashMap<String, Long> shm = builder.create(new File(shmPath), String.class, Long.class);
/*shm.put("k1", alValue.incrementAndGet());
shm.put("k2", alValue.incrementAndGet());
shm.put("k3", alValue.incrementAndGet());
shm.put("k4", alValue.incrementAndGet());
shm.put("k5", alValue.incrementAndGet());*/