The `mysql_pconnect` function opens a persistent connection to a MySQL server.

learn more… | top users | synonyms

0
votes
1answer
100 views

persistent connections and wait timeout

Who maintains persistent connections pool? I've looked a bit at the source code and I understood that mysql_pconnect is a PHP made function and PHP itself is maintaining a pool of connections. It's ...
1
vote
0answers
113 views

When does php's mysql_pconnect consider a connection to be “available”?

I'm using php-fpm (a fastcgi php manager) and am confused about when php would consider a persistent connection created with mysql_pconnect to be available instead of creating a new one. Whenever I ...
0
votes
0answers
111 views

Propel and Persistent Connections

I'm having issues with a large number of conncurrent connections to an Amazon RDS database using propel as the ORM with PHP. The application runs fine during load testing with 20 to 50 connections ...
0
votes
0answers
68 views

MySQL Dropping Connections without pConnect

I'm using mysql_connect on a very high availability server and I continuously get dropped connections. Is it better for HA servers to use mysql_pconnect instead of mysql_connect? I know this has been ...
0
votes
1answer
220 views

Get many connection using mysql_pconnect()

I am using mysql_pconnect() for connecting to mysql. But when many users uses the website it gives the error "To many connection with mysql". For that i had set the variables ...
1
vote
0answers
183 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 ...
4
votes
1answer
562 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?
1
vote
2answers
721 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
729 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 ...
3
votes
3answers
5k views

php pconnect vs connect

If I have a script which inserts data then exits, the script will be opened by 100 users at the same time or within 2 mins. (Actually I'm doing email tracking.) So pconnect is better, or connect is ...
0
votes
1answer
1k 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 ...
5
votes
2answers
2k 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 ...
8
votes
3answers
8k 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 ...