StoreTransaction tx = store.beginTransaction();
try {
long root = store.getRoot("root", tx);
byte buf[] = null;//"hello".getBytes();
store.set(root, buf, tx);
store.commit(tx);
} catch (TimeoutException ex) {
throw new RuntimeException("set failed");
}
Thread.sleep(20000);
} else {