我是卡桑德拉的新人。我必须插入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'})" + ";");
}
我需要知道插入这些行的时间。请任何人帮助我......
答案 0 :(得分:0)
的System.out.println(System.nanoTime());把它放在Resultset的开头和插入结束