⚲
Project
General
Profile
Sign in
Register
Home
Projects
Help
Search
:
Ruby master
All Projects
Ruby
»
Ruby master
Overview
Activity
Roadmap
Issues
Repository
Like
Download (565 Bytes)
Feature #2372
» test.rb
wanabe (_ wanabe)
, 11/15/2009 09:21 PM
require
'tempfile'
require
'benchmark'
Benchmark
.
bm
(
27
)
do
|
bm
|
[[
"short"
,
"hoge"
,
50000
],
[
"long "
,
"Hello world! "
*
1000
,
1000
]].
each
do
|
type
,
str
,
max
|
f
=
Tempfile
.
new
(
'temp-read'
)
f
.
write
str
f
.
close
[
"r"
,
"r:us-ascii:utf-8"
,
"r:us-ascii:utf-16le"
,
"rb"
,
"rb:us-ascii:utf-8"
,
"rb:us-ascii:utf-16le"
].
each
do
|
mode
|
open
(
f
.
path
,
mode
)
do
|
r
|
bm
.
report
(
"
#{
type
}
#{
mode
}
"
)
do
max
.
times
do
r
.
seek
0
r
.
read
end
end
end
end
end
end
« Previous
1
2
3
Next »
(2-2/3)
Loading...