If you are interested in how to create fast MySQL queries, this article is for you
INSERTs in one long INSERT with multiple VALUES lists to insert several rows at a time: quiry will be quicker due to fact that connection + sending + parsing a query takes 5-7 times of actual data insertion (depending on row size). If that is not possible, use START TRANSACTION and COMMIT, if your database is InnoDB, otherwise use LOCK TABLES — this benefits performance because the index buffer is flushed to disk only once, after all INSERT statements have completed; in this case unlock your tables each 1000 rows or so to allow other threads access to the table.This article was written by Alexander Skakunov, author of I want to be free blog, certified MySQL developer.
Most of the above tips are in reneral for RDBMS (mentioned in every RDBMS book) and not specfic to MySQL. They can be applied to any database.
Thanks for collecting the tips and putting it here.
You are missing prepared queries. To use them for INSERTs (and then insert one row after another) is quicker than INSERTing many rows at once without prepared query.
This is a great list of tips, but most of the time, server side tweaking and triggers are not accessible to developers.
Nevertheless, I already changed a few lines of code in my applications. based on what you've just shared.
On the de-normalization part, I did that for a large scale app, and it paid off not only in 'database speed' but also in making writing queries a lot easier.
Excuse me, but you are offering harmful advice. "Use a hash column which is short, reasonably unique." That's a very simple re-implentation of an index; except your pseudo-index won't auto-update when data changes, to say nothing of performance (e.g. concatenating strings is expensive).
Please don't re-invent square a wheel to solve a nonexisting problem, __especially__ when an optimized, easy to use, well-functioning round wheel already exists in the system.
I meant *"a square wheel", obviously.
Great set of tips. In #9 you mention storing MD5 strings as CHAR(32).
A MD5 is 16 bytes big and can be stored in a CHAR(16), it's the Hexidecimal representation of it that is 32 bytes long. You can cast it either way with HEX() and UNHEX()
Seems petty but if you're indexing it and can half the field length it becomes significant.
Using persistent connections can be very dangerous, as they are per user, per Apache process, and cannot be shared between users. So every user may be using multiple database connections, which can lead to MySQL running out of connections. Connection pooling is a far better method to reduce connection overhead.
What a nice collection! Thanks alot!
thanks...gr8 work..
dear
my this php code make slow queries:
$sql = "SELECT * FROM table order by id desc limit 0,12";
$result = mysql_query($sql, $db) or die(mysql_error());
how to fix it
This is very simple & nice article
Thank you guys for the feedback! (I am an author of the article)
Andi Kalsch: You are missing prepared queries
yes, this is a great technique!
Horia Dragomir: server side tweaking and triggers are not accessible to developers
Whom then they are accessible to, I wonder? =)
Piskvor: That's a very simple re-implentation of an index
Hum, it seems you are right.
Jimbo: A MD5 is 16 bytes big and can be stored in a CHAR(16)
Very nice, thank you!
Cameron Eure: Using persistent connections can be very dangerous
Yes, common sense must be used as well.
Hassan: SELECT * FROM table order by id desc limit 0,12
Add primary key on id field.
Just to add to the bit about 16-byte MD5's
For those of you wondering how to do range searches on these, or partitioning by the MD5, something which is more common that you would think.. ( andwhich you would need an integer representation for), there is a neat little trick you can do.
create table Hashes (MD5_Byte tinyint unsigned, MD5_Hash binary(16));
alter table add index MD5_Byte (MD5_Byte);
smallint byte is 1 - 255 which... when converting your 16-byte hex representation, you take the first byte... say 'FF' and do unhex('FF'). Put that result in MD5_Byte.
I do this for two reasons....
1. You can do quick range search on the MD5 (select * from Hashes where MD5 BETWEEN conv('00', 16, 10) AND conv('AA', 16, 10);
2. You dont necessarly have to have the MD5 indexed (unless you really need it to be unique. You have an index on the first byte, which tends to have a reasonably low cardinality, unless you have 100's of millions of md5's. Just be aware that indexing 16-bytes can be quite taxing on your system, and unless you need to look up and print out the MD5 data straight from the index, its better to seek a subset through the MD5_Byte and find pointers to the MD5's matching it on disk.
If you do need VERY fast lookups, and do alot of them on the md5 column, then unique index it (if its unique), and if you can afford the RAM. Normal index is loaded from disk and cached on demand... Remember primary key (big no no)... use normal unique index... try to have an integer as a rowid and put primary on that.... Primary key is held in RAM and 16-byte integer with many rows will take up too much room / ram.
NOTE: For those of you who think you can create a 1 or 2 byte partial index on the binary(16) column, think again. You cannot search binary representations this way.
Just a correction to my previous post.
When taking the first byte of the hex md5, you do conv('FF', 16, 10) NOT unhex('FF') (unhex makes a binary representation of the number)
SQL Query for MySQL is a useful tool that lets you quickly and simply build SQL queries to MySQL databases. any way good article
Just a correction to my previous post.
When taking the first byte of the hex md5, you do conv('FF', 16, 10) NOT unhex('FF') (unhex makes a binary representation of the number)
Great tips... Thanks a lot
Helpful overall. I've got a 3.5m table and its slow to do anything with, I don't understand why though. All I can think of is that MySQL isn't getting enough memory allotted to it. I'll keep looking for tips and tricks, but I did learn some things from this.
Hi All,
THis is the very useful article.
Thanks
Nice tips. Thank you.