I'm trying to write a php benchmark in order to compare some RDBMS, NewSQL and NoSQL.
This script just execute queries and measure the execution time.
For mysql-like, I simply use:
$start = microtime(true);
$result = mysql_query($SQL);
$end = microtime(true);
I did not fetch data for my benchmark.
But with mongodb-php, function find() return a cursor
$start = microtime(true);
$collection = $this->_db->selectCollection($collection);
$cursor = $collection->find($query);
$end = microtime(true);
Does $cursor and $result are equivalent (time/data cost)? Cursor does not load data, I have to iterate cursor in order to load data.. That why time to execute query between MySQL and mongoDB are so different or just mongoDB rocks ...
I wondering if it would be fairer to change my code to:
$start = microtime(true);
$result = mysql_query($SQL);
while ($row = mysql_fetch_row($result)) {}
$end = microtime(true);
and
$start = microtime(true);
$cursor = $collection->find($query);
foreach ($cursor as $doc) {}
$end = microtime(true);
And finally, is it true to say that each time you iterate on mongodb cursor data are fetch directly from mongodb server and not from computer memory?