xxxxxx Posted June 1, 2007 Share Posted June 1, 2007 mysql_connect() vs mysql_pconnect Link to comment https://forums.phpfreaks.com/topic/53826-mysql_connect-vs-mysql_pconnect/ Share on other sites More sharing options...
saf Posted June 1, 2007 Share Posted June 1, 2007 mysql_connect() is like a door at walmart - opens when someone enters and closes behind them mysql_pconnect() is like a door at sams/costco - stays open and anyone can walk in basically a pconnect will remain open on the server, thus when a request comes it, it does not have to create a connection and then execute the query...it simply takes the connection pointer and tags a query through it. Check this out: http://us.php.net/manual/en/features.persistent-connections.php http://www.wellho.net/mouth/104_mysql-connect-or-mysql-pconnect-in-PHP-.html Google Search: mysql_pconnect() Link to comment https://forums.phpfreaks.com/topic/53826-mysql_connect-vs-mysql_pconnect/#findComment-266090 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.