I'm doing a series of database queries, which caches the statement handles. Usually this works fine and makes life good, but sometimes, the queries vary as I loop over the following code, and eventually I have memory problems. Then, things go bad (aka crash!).
if (my $sth = $self->{$dbh}{$query}) {
+
warn "Using cached statement handler\n" if $self->debug;
+
return $sth;
+
} else {
+
warn "Creating new statement handler\n" if $self->debug;
+
$sth = $dbh->prepare($query) || $self->throw("Couldn't prepare que
+ry $query:\n ".DBI->errstr."\n");
return $self->{$dbh}{$query} = $sth;
+
}
I'd be interested in limiting the number of cached statement handlers, as the caching is only really worthwhile when I am not constantly making new ones. Does anyone have a suggestion on how I could go about this?
I was considering some sort of size limited tied hash, and then shifting an element off, but was looking at what others might suggest.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.