What is the difference between mysql_connect and
mysql_pconnect ? Which one is good in terms of performance ?
Answer Posted / ranjan goyal
In addition to what Brijendra said, persistanty connections
are limited per server so limited number of people will
have access to the website so infact it will stop high
traffic that implies if we say assuem that our site will
have high traffic then we must not use persistent
connections. Persistent connections should be used only
where we only have limited number of users
| Is This Answer Correct ? | 21 Yes | 3 No |
Post New Answer View All Answers
What is difference between mysqli and mysql?
What are the different filter functions used to filter a variable?
Can I write php code in html file?
How would you declare a function that receives one parameter name hello?
What is different between software and app
How big is nvarchar max?
How to get ip address of clients machine?
How can we check the value of a given variable is alphanumeric?
What are the benefits of using queries?
What is isset php?
How do I debug php?
What is the use of isset() in php?
What is the difference between require_once and require in php?
Write a php script to get the largest key in an array?
What is the differences between $a != $B and $a !== $B?