final Key<Root> parent = getRootKey();
// wrap inserts in same Tx -- as expected
long txStart = System.currentTimeMillis();
ObjectifyService.ofy().transact(new VoidWork() {
public void vrun() {
doInsert(generateData(N, parent));
}
});
long txEnd = System.currentTimeMillis();