Tagged Questions
The mysql-pconnect tag has no wiki summary.
4
votes
3answers
3k views
mysql_connect VS mysql_pconnect
I have this doubt, I've searched the web and the answers seem to be diversified. Is it better to use mysql_pconnect over mysql_connect when connecting to a database via PHP? I read that pconnect ...
3
votes
1answer
235 views
Does Drupal support persistent DB connections?
Does Drupal support persistent DB connections?
If yes, how do you set them up and what are the downsides?
If no,... why not?
3
votes
2answers
822 views
Mysql persistent connections and advantages of mysql_pconnect?
I had never heard of persistent connections before, and I don't understand the advantages.
I run a PHP/MySQL based internet website, it receives tens of thousands of page views per day. In my header ...
2
votes
3answers
2k views
php pconnect vs connect
if i have a script which insert a data then exit
the script will be opened by 100 user at same time or within 2 mins
actually im doing email tracking
so pconnect is bettwe or connect is better to ...
1
vote
0answers
57 views
mysql_pconnect issues
I have a problem with mysql db connection..
My application does a lot of queries to the database.
And loads results of the query in the page.
Before, I used mysql_connect for the connection. I ...
1
vote
2answers
343 views
mysql connection from daemon written in php
i have written a daemon to fetch some stuff from mysql and make some curl requests based on the info from mysql. since i'm fluent in php i've written this daemon in php using System_Daemon from pear.
...
0
votes
1answer
184 views
when does mysql_pconnect() connection gets closed
It is know that 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 ...
0
votes
1answer
549 views
mysql_pconnect(): send of 5 bytes failed with errno=32 Broken pipe
I've been using the same DB abstraction library for years. But today it started writing these Notice (8) messages in my log.
The application is working correctly but every time a script connects to ...