vote up 2 vote down star

I'd like to know if anyone has any first-hand experience with this dichotomy. A few blogs say the mysql extension is faster than mysqli. Is this true?

And I'm only asking about speed. I know mysqli has features that are not present in the older extension.

flag

43% accept rate

4 Answers

vote up 1 vote down

http://www.google.com/search?q=mysqli+benchmark - first result looks to be what you're looking for, as do others on the first page.

link|flag
1  
As the first result in google now seems to be <mysqlperformanceblog.com/?s=php+pdo+mysqli+benchm…;, I don't think that was quite what you meant. Perhaps in the future, you'd refrain from sardonic responses. Especially if this very page rises from being the sixth result under your google search. – Joseph Holsten May 23 at 9:55
The point stands - the poster could have Googled and clicked the first result at the time and gotten the answer. That you now need to drop down to the second search result isn't particularly relevant. – ceejayoz May 23 at 13:05
vote up 0 vote down

According to all the Google results for benchmarks linked by ceejayoz it looks like MySQL is at least slightly faster than MySQLi in all the benchmark tests. I do recommend reading the results for details but just figured I'd post something that directly answered the question and bumps up ceejayoz's answer.

link|flag
vote up 10 vote down

The MySQL extension is very slightly faster than MySQLi in most benchmarks I've seen reported. The difference is so slight, however, that this should probably not be your criterion for deciding between the two.

Other factors dwarf the difference in performance between mysql and mysqli. Using mod_php or FastCGI, a bytecode cache like APC, or using data caching judiciously to reduce database hits, are far more beneficial for overall performance of PHP scripts than the choice of MySQL extension.

Don't be penny wise and pound foolish! :-)

link|flag
vote up 0 vote down

The PHP documentation has a good comparison of mysql, mysqli, and PDO. I know you only asked about speed, but others might find this useful. It talks about the feature differences between the options.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.