assertNull("Should be null", cache1.get(fqn, "key"));
assertNull("Should be null", cache2.get(fqn, "key"));
mgr.begin();
cache1.put(fqn, "key", "value");
assertEquals("value", cache1.get(fqn, "key"));
mgr.commit();
assertEquals("value", cache2.get(fqn, "key"));
assertEquals("value", cache1.get(fqn, "key"));
mgr.begin();
cache1.put(fqn, "key2", "value2");