Does anyone know a PHP extension to use mod_dbd for database connections?
Our application needs to access a remote database. It used to be an Apache module using mod_dbd for database connections and the transaction takes about 200ms. Now we changed the application to PHP and the same transaction takes over 600ms now. We hope some kind of pooling will improve the performance.
We switched to use mysql_pconnect()
but it doesn't work nearly as good as mod_dbd.