public
Description: ruby lang (www.ruby-lang.org) svn mirror
Homepage: http://svn.ruby-lang.org/repos/ruby/
Clone URL: git://github.com/juretta/ruby.git
ruby / benchmark / bm_io_file_write.rb
100644 15 lines (11 sloc) 0.165 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# Seek and Write file.
#
 
require 'tempfile'
 
max = 20_000
str = "Hello world! " * 1000
f = Tempfile.new('yarv-benchmark')
 
max.times{
  f.seek 0
  f.write str
}