vote up -1 vote down star

Hi, I am planning to use MYSQL. Is there a connection pooling extension available. or what is the normal practice for connection. is this the one used in every where... mysqli_connect("localhost", "xxx", "xxx", "test");

Do people use just normal msql_connect or pconnect..? how better is pconnect and what setting should I do for PConnect....

THnks

flag

69% accept rate

3 Answers

vote up 2 vote down

have you ever used mysql_pconnect() ? mysql_pconnect() acts very much like mysql_connect() with two major differences.

First, when connecting, the function would first try to find a (persistent) link that's already open with the same host, username and password. If one is found, an identifier for it will be returned instead of opening a new connection.

Second, the connection to the SQL server will not be closed when the execution of the script ends. Instead, the link will remain open for future use (mysql_close() will not close links established by mysql_pconnect()).

This type of link is therefore called 'persistent'

Check it here

link|flag
vote up 0 vote down

Badly asked question

mysql_pconnect() or mysqli_pconnect()

http://uk.php.net/manual/en/function.mysql-pconnect.php

link|flag
vote up 0 vote down

mysqli_connect is the recommended method.
mysqli_pconnect will persist the connection (i.e. use connection pooling).
Are you sure you need pooling?

link|flag
I am not sure. I think the connection pooling will increase the performance as it doesn't request a connect every time. what do you suggest... – coool May 6 at 19:08
It really depends on your site. Can't tell you in the air what is better. B.T.W do not use the mysql_ functions but rather the mysqli_ functions, as they are the recommended ones (search mysql site). – Itay Moav May 6 at 20:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.