I had never heard of persistent connections before, and I don't understand the advantages.
I run a PHP/MySQL based website, it receives tens of thousands of page views per day. In my header file on each of these pages I have just used mysql_connect()
and I haven't bothered with terminating the connection in the footer file.
In my case are there any advantages of using mysql_pconnect()
?