Jump to content

Persistant MYSQL ConnectionI


jaymc

Recommended Posts

I have a chatroom and in the config there is an option to use a persistant MYSQL connection

Im assuming it has good points and bad points depending on the usage

Im just wondering would it be a good idea to use it for a seriously busy chatroom (50 - 100 chatters)

And if someone could provide some info about it

Cheers
Link to comment
https://forums.phpfreaks.com/topic/34474-persistant-mysql-connectioni/
Share on other sites

The moment you made a pconnect to your mysql server, the connection link stored in the php resource.
the next time you query, without specify a link, php will look for a link inside the php resource.

In case a you called pconnect again, php will check if there is a link in the resource.  If there is, php simply execute the next statement.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.