测试JDBC批处理效率没变化

发布于 2022-09-06 06:12:03 字数 3193 浏览 14 评论 0

我在学习 JDBC 批处理时, 为比较 Statement, PreparedStatement 和 JDBC Batch 操作之间的效率,写一个例子:向数据库中插入 100,000 条记录,并记录消耗的时间。然后分别用这三种方式实现,可每次测试的结果却都是几乎相同没变化,请教大神这是为什么?

import org.junit.Test;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.Statement;

public class BatchTest {

    /**
     * 使用 Statement 进行批处理操作
     */
    @Test
    public void testBatchWithStatement(){
        Connection connection = null;
        Statement statement;
        String sql;

        try {
            connection = JDBCUtils.getConnection();
            JDBCUtils.beginTx(connection);

            statement = connection.createStatement();
            long start = System.currentTimeMillis();
            for (int i = 0; i < 100000; i++) {
                sql = "INSERT INTO batch VALUES(" + i +")";
                statement.executeUpdate(sql);
            }
            long end = System.currentTimeMillis();

            System.out.println(end - start);

            JDBCUtils.commit(connection);
        } catch (Exception e) {
            e.printStackTrace();
            JDBCUtils.rollback(connection);
        }
    }

    /**
     * 使用 PreparedStatement 进行批处理操作
     */
    @Test
    public void testBatchWithPreparedStatement(){
        Connection connection = null;
        PreparedStatement statement;
        String sql;

        try {
            connection = JDBCUtils.getConnection();
            JDBCUtils.beginTx(connection);

            sql = "INSERT INTO batch VALUES(?)";
            statement = connection.prepareStatement(sql);

            long start = System.currentTimeMillis();
            for (int i = 0; i < 100000; i++) {
                statement.setInt(1, i + 1);
                statement.executeUpdate();
            }
            long end = System.currentTimeMillis();

            System.out.println(end - start);

            JDBCUtils.commit(connection);
        } catch (Exception e) {
            e.printStackTrace();
            JDBCUtils.rollback(connection);
        }
    }

    /**
     * 使用 Batch 进行批处理操作
     */
    @Test
    public void testBatch(){
        Connection connection = null;
        PreparedStatement statement;
        String sql;
        try {
            connection = JDBCUtils.getConnection();
            JDBCUtils.beginTx(connection);

            sql = "INSERT INTO batch VALUES(?)";
            statement = connection.prepareStatement(sql);

            long start = System.currentTimeMillis();
            for (int i = 0; i < 100000; i++) {
                statement.setInt(1, i + 1);
                statement.addBatch();
                if ((i + 1) % 500 == 0){
                    statement.executeBatch();
                    statement.clearBatch();
                }
            }
            if (100000 % 300 != 0){
                statement.executeBatch();
                statement.clearBatch();
            }
            long end = System.currentTimeMillis();

            System.out.println(end - start);
            JDBCUtils.commit(connection);
        } catch (Exception e) {
            e.printStackTrace();
            JDBCUtils.rollback(connection);
        }
    }

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岛歌少女 2022-09-13 06:12:03

jdbc URL里加上rewriteBatchedStatements=true这个参数就可以了。

或者,在程序写成一条INSERT插入多行数据的形式,不用依赖jdbc的batch功能,这样是最靠谱的,也适合移植到MySQL以外的数据库。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文