Package honeycrm.server.profiling

Examples of honeycrm.server.profiling.ReadTest


    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();
View Full Code Here

TOP

Related Classes of honeycrm.server.profiling.ReadTest

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.