I never used the persistent mysql_pconnect function only mysql_connect() but now I want to put the DB on its own server but was wondering if its safe for production or any issues/backups I should be aware of?
To clarify is there some failsafe/auto reconnect when the mysterious MySQL server gone away or other connection errors come up? or do I have to implement this myself?
Is last_insert_id() reliable for the correct connection? I read that it is (after some bug fixes) and there is no race condition but can someone who uses it for production verify?
Any other connection issues I should be aware of before I switch over in a production environment?
Do I need to implement some backup mysql_connect code? I do not want to 'discover' some server crashing bugs so any/all tips and info from experienced users is much appreciated