Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: interrupting a daemon

by tachyon (Chancellor)
on Oct 23, 2004 at 22:15 UTC ( [id://401896]=note: print w/replies, xml ) Need Help??


in reply to Re: interrupting a daemon
in thread interrupting a daemon

By default MySQL will *do the right thing* very slowly. It will actually close an inactive connection after 8 hours. Given that by default there are only 100 connections available it is quite easy to use them all up if you do not do a clean disconnect. You set the values in my.cnf BTW.

[mysqld] set-variable=wait_timeout=28800 set-variable=max_connections=100

Cleanup is simple. All you need is an END block, ideally placed immediately after the connect (so you know it is there).

my $dbh = DBI->connect...... END{ $dbh->disconnect() if $dbh }

cheers

tachyon

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://401896]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-20 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found