0

我是卡桑德拉的新手。我必须插入 100 行。但我需要知道插入这些行的时间。我不知道该怎么做。

这是插入 1 行的代码。我有 100 行这样的行,我将循环编写。

 public void loadData() {
    session.execute("INSERT INTO songs (id, title, album, artist, tags) "
    + "VALUES ("
    + "756716f7-2e54-4715-9f00-91dcbea6cf50,"
    + "'La Petite Tonkinoise',"
    + "'Bye Bye Blackbird',"
    + "'Joséphine Baker'," + "{'jazz', '2013'})" + ";");
}

我需要知道插入这些行的时间。请任何人帮助我....

4

1 回答 1

0

System.out.println(System.nanoTime()); 把它放在你的结果集的开头和插入的结尾

于 2013-06-13T07:34:23.157 回答