I spend lot of time profiling popular PHP applications finding where exactly processing time is spent during PHP execution. Few months ago, one thing which caught my attention was performance of
mysql_connect API. On my windows test bench,
xdebug output showed that one call to
mysql_connect was taking 0.31 seconds which is huge. While playing with the API, I noticed that when IP address of the MySQL machine is used instead of the hostname, performance of
mysql_connect API is much better.
Read more ...
View the original post