I have a MySQL table where rows are inserted dynamically. Because I can not be certain of the length of strings and do not want them cut off, I make them varchar(200) which is generally much bigger than I need. Is there a big performance hit in giving a varchar field much more length than necessary?
|
No, in the sense that if the values you're storing in that column are always (say) less than 50 characters, declaring the column as |
|||
|
|
|
There's one possible performance impact: in MySQL, temporary tables and |
|||||||||||||||
|
|
Size is performance! The smaller the size, the better. Not today or tomorrow, but some day your tables will be grown to a size when it comes to serious bottlenecks, no matter what design you laid out. But you can foresee some of those potential bottlenecks in your design phase that are likely to happen first and try to expand the time your db will perform fast and happily until you need to rethink your scheme or scale horizontally by adding more servers. In your case there are many performance leaks you can run into: Big joins are nearly impossible with long You have to ask yourself: How many inserts per year may happen? What is the average length? Do I really need more than 200 characters or can I catch that in my application front-end, even by informing users about the maximum length? Can I split up the table into a narrow one for fast indexing and scanning and another one for holding additional, less frequently needed data of expanding size? Can I type the possible varchar data into categories and so extract some of the data into a few smaller, maybe int or bool-type columns and narrow the varchar column that way? You can do a lot here. It may be best to go with a first assumption and then re-design step by step using real-life measured performance data. Good luck. |
||||
|
|
VARCHAR is ideal for the situation you describe, because it stands for "variable character" - the limit, based on your example, would be 200 characters but anything less is accepted and won't fill the allotted size of the column. VARCHAR also take less space - the values are stored as a one-byte or two-byte length prefix plus data. The length prefix indicates the number of bytes in the value. A column uses one length byte if values require no more than 255 bytes, two length bytes if values may require more than 255 bytes. For more information comparing the MySQL CHAR to VARCHAR datatypes, see this link. |
|||
|
|
|
Performance? No. Disk storage? Yes, but it's cheap and plentiful. Unless your database will grow to terabyte scale you're probably okay. |
|||
|
|
|
Some of you are mistaken thinking that a |
|||||||
|
|
Being varchar, rather than just char, the size is based on an internal field to indicate its actual length and the string itself. So using varchar(200) is not very different to using varchar(150), except that you have the potential to store more. And you should consider what happens on an update, when a row grows. But if this is rare, then you should be fine. |
|||
|
|
|
There can be performance hits - but usually not on a level that most users would notice. When the size of each field is known in advance, MySQL knows exactly how many bytes are between each field/row and can page forward without reading all the data. Using variable characters diminshes this ability for optimization. Does varchar result in performance hit due to data fragmentation? Even better, char vs varchar. For most uses, you'll be fine with either - but there is a difference, and for large scale databases, there are reasons why you'd pick one or the other. |
|||
|
|