Package com.oltpbenchmark.benchmarks.ycsb.procedures

Examples of com.oltpbenchmark.benchmarks.ycsb.procedures.InsertRecord


        this.m.clear();
        proc.run(conn, keyname, fields, this.m);
    }

    private void insertRecord() throws SQLException {
        InsertRecord proc = this.getProcedure(InsertRecord.class);
        assert (proc != null);
        int keyname = insertRecord.nextInt();
        // System.out.println("[Thread " + this.id+"] insert this:  "+ keyname);
        Map<Integer, String> values = buildValues(10);
        proc.run(conn, keyname, values);
    }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.ycsb.procedures.InsertRecord

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.