Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Sharing database handle

by gav^ (Curate)
on Apr 18, 2002 at 22:28 UTC ( [id://160372]=note: print w/replies, xml ) Need Help??


in reply to Sharing database handle

It would have been very handy to know what database you're talking about. With MySQL, connecting is fast, in fact they list it when talking about optimization.

You might find it more portable (and perhaps faster) to tweak your database to allow more connections and to do anything suggested to improve performance on that end.

Another option maybe for the child processes not to write to the database at all (especially in the case with logging) and for the parent to dump the data into the db at regular intervals.

Hope this helps...

gav^

Replies are listed 'Best First'.
Re: Re: Sharing database handle
by graff (Chancellor) on Apr 20, 2002 at 00:40 UTC
    Another option maybe for the child processes not to write to the database at all (especially in the case with logging) and for the parent to dump the data into the db at regular intervals.

    Well, this may be an option, but it's probably not a good idea. You'd hate to have a bunch of inserts or updates queued in the parent and then have that process go down before it can finish the queue, or find out that the connection dropped for whatever reason since the last time it processed a queue.

    Has anyone (esp. Marcello) seen data about how much it costs loadwise to have a bunch of child connections? My own (anecdotal, not systematic) experience has been that the number of connections is less important than what those connections are doing. If the SQL demands of any one process are heavy, having more than a couple going at once will hurt, no matter how you do it. If it's easy stuff, then number of concurrent requests is not much of an issue.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (11)
As of 2024-04-19 16:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found