MySQL Optimization Hints
By Pete Freitag
Every programmer loves to optimize, even when we know we shouldn't. To satisfy your cravings MySQL has several keywords that can be placed in your SQL statement to give the database server an explicit optimization instruction.
I should point out that using the hints incorrectly will most likely cause your queries to perform worse, so be sure that it actually makes sense to use them before you go nuts. This means use EXPLAIN
and read the documentation on each hint before using.
It's also a good idea to enclose the hints within a SQL comment, for example SELECT /*! SQL_NO_CACHE */ columns FROM table
. This can help to make your application a bit more portable.
Let's take a look at some MySQL Optimization Hints:
SQL_NO_CACHE
The SQL_NO_CACHE
hint turns off MySQL's builtin query caching mechanism for a particular query. You can help MySQL make the query cache more efficient by using this hint on queries that are highly dynamic (such as a keyword search, or a report that only runs nightly). Make sure query caching is turned on otherwise there is no need for this command.
Checkout my article on the MySQL Query Cache for more info.
SQL_CACHE
If you have setup MySQL Query Caching to explicit mode (set query_cache_type = 2
) then you can use the SQL_CACHE
hint to tell MySQL which queries to cache.
My article on the MySQL query cache also covers this hint.
HIGH_PRIORITY
The HIGH_PRIORITY
hint can be used on SELECT
or INSERT
statements to let MySQL know that this is a high priority query. This hint will basically allow the query to skip in line.
LOW_PRIORITY
The LOW_PRIORITY
hint can be used on INSERT
and UPDATE
statements.
If you use the LOW_PRIORITY
keyword, execution of the query is delayed until no other clients are reading from the table. This means that you may wait a LONG time, or forever on servers with a heavy read volume.
INSERT DELAYED
An INSERT LOW_PRIORITY
statement will not return until the statement has been executed, which could possibly be forever. Instead you can use an INSERT DELAYED
statement. It will return immediately, but it will still wait until other clients have closed the table before executing the statement.
I have written an article on MySQL Insert Delayed as well.
Note: INSERT DELAYED
only works on MyISAM, MEMORY, and ARCHIVE tables.
STRAIGHT_JOIN
This hint will tell MySQL to join the tables in the order that they are specified in the FROM
clause.
Use EXPLAIN
to make sure that MySQL has not already figured out the optimal join order. And if you specify an ill order you can make MySQL do a lot more work than it needs to.
SQL_BUFFER_RESULT
This hint tells MySQL to put the result of the query into a temporary table. This will free up a table lock while the result set is being sent to the client. So you would only want to use this on large result sets.
SQL_BIG_RESULT
The SQL_BIG_RESULT
hint can be used with DISTINCT
and GROUP BY
SELECT
statements. It as you might guess, tells MySQL that the result set will be big. According to the MySQL documentation, if invoked
MySQL directly uses disk-based temporary tables if needed, and prefers sorting to using a temporary table with a key on the GROUP BY elements.
SQL_SMALL_RESULT
AS you might guess this is pretty much the opposite of SQL_BIG_RESULT
. When enabled MySQL uses fast temporary tables to store the resulting table instead of using sorting. Since this is typically the default route of the optimizer, this hint is often not needed.
If you want to dig deeper, have lots of articles on MySQL, and I can also recommend the book High Performance MySQL (ISBN 0596003064) by Jeremy Zawodny and Derek Balling from O'Reilly.
Finally it is always good to stay up to date with MySQL Patches. Here is a good resource for staying current with MySQL Security Patches.
MySQL Optimization Hints was first published on January 02, 2007.
If you like reading about mysql, performance, tuning, optimization, hints, tips, or cache then you might also like:
- Premature optimization is the root of all evil
- Insert Delayed with MySQL
- The MySQL Query Cache
- High Performance MySQL