7

誰かが私が間違っていることを教えてもらえますか?私はmysqlで350の挿入を実行していて、40秒ほどかかります。

これがコードです

long t0 = System.currentTimeMillis();
        Connection con = connectionProvider.getConnection();
        PreparedStatement s = con.prepareStatement("insert into domkee.friends(idFriends,friend1Id,friend2Id,friend2Name) values(?,?,?,?)");
        con.setAutoCommit(false);
        for (Friend f : friends) {
            s.setLong(1, 0);
            s.setLong(2, f.getFriend1Id());
            s.setLong(3, f.getFriend2Id());
            s.setString(4, f.getFriend2Name());
            s.addBatch();

        }
        long t1 = System.currentTimeMillis() - t0;
        s.executeBatch();
        long t2 = System.currentTimeMillis()-t0;
        con.commit();
        long t3 = System.currentTimeMillis()-t0;
        s.close();
        con.close();
        long t4 = System.currentTimeMillis()-t0;
        System.out.println(((double)t1/1000) + ";" + ((double)t2/1000) + ";" + ((double)t3/1000) + ";" + ((double)t4/1000));

これがコンソールです:

0.156;39.251;39.376;39.486

それで、.executeBatch()40秒ほどかかりますが、何が問題になる可能性がありますか?

4

1 に答える 1

18

?rewriteBatchedStatements=trueJDBCURLの最後に追加します。それはあなたに深刻なパフォーマンスの改善を与えるでしょう。これはMySqlに固有であり、他のJDBCドライバーには影響しないことに注意してください。

于 2012-11-22T02:08:15.820 に答える