in reply to Re: Perl/CGI + MySQL: How many calls is too many?
in thread Perl/CGI + MySQL: How many calls is too many?

In MySQL, in my current project, it was the Group by's that were killing me. It's much faster to just slurp all of that information into a hash ref and do the grouping in Perl. The same goes for SUM and COUNT calls. If you are doing more than one or two of these calls, you pretty much NEED to pull that data into Perl and do the additions there.

oakbox

  • Comment on Re: Re: Perl/CGI + MySQL: How many calls is too many?