Groovy I / O性能问题

时间:2013-04-26 08:27:45

标签: performance groovy

我不是一个时髦的专家,只是不时地使用它。最新目标之一是生成一个包含一些随机数据的非常简单的文件。我创建了以下脚本:

out = new File('sampledata.txt')
Random random = new Random();
java.util.Date dt = new java.util.Date();

for (int i=0; i<100000; ++i) {
    dt = new java.util.Date();
    out << dt.format('yyyMMdd HH:mm:ss.SSS') + '|box|process|||java.lang.Long|' +   random.nextInt(100) + '|name\n'
}

现在,我对它的表现感到困惑。完成时需要大约1.5 分钟,而用Java或Ruby编写的相同代码需要不到

Ruby中的类似代码(执行大约需要1秒):

需要“时间”

File.open("output.txt", "w") do |file|
  100000.times do 
    line = Time.now.strftime("%Y%m%d %H:%M:%S.%L") + '|box|process|||java.lang.Long|' + rand(100).to_s + '|name'
    file.puts line
  end
end

如何改进groovy的处理速度?

1 个答案:

答案 0 :(得分:7)

左移操作符打开文件,跳转到最后,附加文本,然后再次关闭文件......

相反,请尝试:

Random random = new Random();

// Open the file and append to it.
// If you want a new file each time, use withWriter instead of withWriterAppend
new File('sampledata.txt').withWriterAppend { w ->
  100000.times {
    w.writeLine "${new Date().format('yyyMMdd HH:mm:ss.SSS')}|box|process|||java.lang.Long|${random.nextInt(100)}|name"
  }
}

(这也更像Ruby代码正在做的事情)