I've repeated @Trausti Thor Johannsson's test.
| Language | Time | | | in seconds | |----------+------------| | perl | 1.9 | | python | 4.2 | | ruby | 5.0 | | php | > 600 |
Input file was generated by:
$ perl -E"say for(1..1000_000)" >1M.input
All scripts resemble a php version i.e., the code is not idiomatic.
$ cat read_array.*
#!/usr/bin/env php
<?php
$text = file_get_contents ("1M.input"); #TODO: argv support
$lines = split("\n", $text);
print "wc -l: ".count($lines)."\n";
?>
#!/usr/bin/perl -w
$filename = @ARGV == 1 ? $ARGV[0] : '1M.input';
{
open $fh, "<", $filename or die "can't open '$filename' $!";
undef $/;
$text = <$fh>; # php-like version
@lines = split "\n", $text;
print "wc -l: ". @lines ."\n";
}
#!/usr/bin/env python
import sys
filename = sys.argv[1] if len(sys.argv) == 2 else '1M.input'
text = open(filename).read() # or just readlines() (it keeps '\n')
lines = text.split('\n')
print("wc -l: ", len(lines))
#!/usr/bin/env ruby
filename = ARGV.size == 1 ? ARGV[0] : '1M.input'
text = File.read filename
lines = text.split "\n"
puts "wc -l: " << lines.size.to_s
This test confirms yet one another time: all benchmarks are evil (PHP is at least 100 times slower than python in this test, but I wouldn't go and write a blog post about it due to there are other tests that will show different picture)
