Re: running out of mysql-connections
- From: "pritaeas" <pritaeas@xxxxxxxxxxx>
- Date: Tue, 26 Jun 2007 10:43:21 +0200
"ojorus" <ojorus@xxxxxxxxxxx> wrote in message
news:4680c495$1@xxxxxxxxxxxxxxxxxxxx
I'm having a flash-file (swf) which is requesting info from a PHP-fileevery
ten seconds. The PHP-file connects to a mysql-database, make a shortquery,
and then close the connection, before it returns the info to the swf.from
Like this:
$mysqli = mysqli_connect($dbhost, $dbusername, $dbuserpassword,
$default_dbname, $port); //open connection
$number = getNumber(); //the function makes a query, and return a number
mysqli_close($mysqli); // closing connection
echo "&number=$number"; // returns the number to yhe swf
The problem is that it seems like the mysqli-connection will not close
time to time. I have a limitation of 1000 connections, which should be
enough really. But if I run the flash-file for hours (say 8 hours), the
limitation of 1000 OPEN connection is reached, even if I was hoping there
should only be ONE open connection at a time.
Any suggestions why this problem appear?
// ojorus
The wait timeout for mysql is 3600 seconds by default. Decrease it if you
can.
.
- Follow-Ups:
- Re: running out of mysql-connections
- From: Willem Bogaerts
- Re: running out of mysql-connections
- References:
- running out of mysql-connections
- From: ojorus
- running out of mysql-connections
- Prev by Date: Re: Gubed Debugger Client will not Connect to Server
- Next by Date: Re: Streams and wrappers
- Previous by thread: running out of mysql-connections
- Next by thread: Re: running out of mysql-connections
- Index(es):
Relevant Pages
|