Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: perl module/script to tune MySQL queries

by sundialsvc4 (Abbot)
on Aug 13, 2013 at 04:10 UTC ( [id://1049207]=note: print w/replies, xml ) Need Help??


in reply to perl module/script to tune MySQL queries

The EXPLAIN verb can be used to show you the “execution plan” of any SQL statement ... this being the actual sequence of low-level operations that the query engine will carry out in order to do what the query says to do.   It is often the case that “there’s more than one way to do it,” but that one of them will be noticeably better than the others.

You can obtain slight speedups by “preparing a statement-handle” once, then using it to execute the same query multiple times, changing the set of parameters that you give it each time.

How many queries-per-second are you running, and what sort of queries are they?   Are the tables InnoDB?   Transactions?

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (3)
As of 2024-04-24 21:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found