Collection<ReadTest> reads = new HashSet<ReadTest>();
final Random r = new Random();
for (int i = 0; i < count; i++) {
final ReadTest t = new ReadTest();
t.setFoo(r.nextLong());
reads.add(t);
}
log.warning("Started creation of " + count + " values");
final long before = System.currentTimeMillis();