Benchmarking mysql on windows -
mysql on linux has useful pager command allows run command , see results of processing query , not displaying results in console.
pager cat > /dev/null
251903 rows in set (49.25 sec)
mysql on windows missing pager command. running command on windows including output takes 1 min 17.28 seconds (most of time spent outputting command prompt). how can time how long takes perform command in windows. (i suppose write simple python program!)
try changing following performance comparisons:
select count(*) ......
Comments
Post a Comment