Many of the php/mysql texts I've read on the subject usually tout mysql_pconnect() as the way to go due to the efficiency of the persistent connection.
After scanning this forum, it appears that in practice one is better off using the non-persistent version. I assume that having control over the opening/closing of the connection is worth more than the cost of the overhead incurred.
I would appreciate if anyone could comment on this, particularly if you have experience from a production perspective. Also, does anyone know if there is a breakpoint at which the number of users/connections begins to really adversely affect performance?
Thanks very much.