Package com.oltpbenchmark.benchmarks.jpab.tests

Examples of com.oltpbenchmark.benchmarks.jpab.tests.BasicTest


    @Override
    public void load() throws SQLException {
        int objectCount= (int)this.workConf.getScaleFactor();
        EntityManagerFactory emf = Persistence.createEntityManagerFactory(persistanceUnit);
        EntityManager em = emf.createEntityManager();
        Test test=new BasicTest();
        test.setBatchSize(10);
        test.setEntityCount(objectCount);
        test.buildInventory(objectCount);
        while (test.getActionCount() < objectCount) {
            System.out.println(test.getActionCount()+ " % "+objectCount);
            test.persist(em);
        }
        test.clearInventory();
    }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.jpab.tests.BasicTest

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.