long[] ids = new long[items];
for (int i = 0; i < items; i++) {
ids[i] = store.createObject(txn);
store.setObject(txn, ids[i], data);
}
txn.commit();
for (int r = 0; r < repeat; r++) {
long start = System.currentTimeMillis();
for (int c = 0; c < count; c++) {
txn = createTransaction(1000);
for (int i = 0; i < items; i++) {