I actually did a benchmark with a few simple items, mostly to do with split strings and array manipulation. I did it with python, php, ruby and perl.
What I wanted to accomplish was to see how much faster php was than Ruby, and if php was faster than perl, why I did python was just because I could :)
What I found out is that python actually was the fastest by a large factor, and ruby was more than twice as fast as php, and php totally failed on 1.000.000 lines while everything else ran just fine.
Here is the result
$ time php readArray.php
^C
real 5m1.741s
user 5m1.086s
sys 0m0.640s
time ruby readArray.rb
$ time ruby readArray.rb
Stærðin á fylkinu er : 1000000
real 0m0.541s
user 0m0.487s
sys 0m0.052s
time perl readArray.pl
$ time perl readArray.pl
Size of array is 1000000
real 0m0.726s
user 0m0.565s
sys 0m0.161s
$ time python readArray.py
my arr is :
1000001
real 0m0.179s
user 0m0.126s
sys 0m0.053s
Here is the code for
php
<?php
$file = file_get_contents ("testfile");
$fylki = split("\n", $file);
print "Count is :".count($fylki)."\n";
?>
and ruby
a = File.read("testfile")
myarray = a.split("\n")
puts "Arraysize is : " << myarray.size.to_s
and python
f = open("testfile", "r")
a = f.read(open("testfile").read() # or just open("testfile").readlines() # it keeps '\n'
myarr = a.split("\n")
print "my arr is :"
print ", len(myarr)
So my conclusion was that php was not as fast and powerful as the rumor is, and ruby is not slow at all, which was exactly what I as a php guy did not want to see.
But being a ruby fan this convinced me to look better at ruby. I have no idea why I am not turning to python, as it was the fastest by a large margin and being quite simple, I have no idea.
p.s. Just added the python time
