java 批量插入10万条数据

for (int i = 0; i < 100000; i++) {

                dbHelper.insert("INSERT aaa(name)  Values ('1')");

            }

运行时间==780450ms

conn = getConn();

// JAVA默认为TRUE,我们自己处理需要设置为FALSE,并且修改为手动提交,才可以调用rollback()函数

conn.setAutoCommit(false);

st = conn.createStatement();

long start = System.currentTimeMillis();

for (int i = 0; i < 100000; i++) {

    st.execute("INSERT bbb(name)  Values ('1')");

}

// 事务提交

conn.commit();

long end = System.currentTimeMillis();

System.out.println("运行时间==" + (end - start) + "ms");

运行时间==21484ms

conn = getConn();

// JAVA默认为TRUE,我们自己处理需要设置为FALSE,并且修改为手动提交,才可以调用rollback()函数

conn.setAutoCommit(false);

st = conn.createStatement();

long start = System.currentTimeMillis();

for (int i = 0; i < 100000; i++) {

    st.addBatch("INSERT ccc(name)  Values ('1')");

}

st.executeBatch();

// 事务提交

conn.commit();

运行时间==21524ms

在mysql链接后加上如下参数,代码和上面的完全相同,结果速度快了很多

&rewriteBatchedStatements=true

运行时间==8216ms

而我在第二种方法的连接上加上&rewriteBatchedStatements=true,结果运行结果和原来相差无几

运行时间==21538ms

参考链接:

介绍MySQL Jdbc驱动的rewriteBatchedStatements参数

你可能感兴趣的:(java)