Between utf8_general_ci and utf8_unicode_ci, are there any differences in terms of performance?
|
1
|
|
|
|
|
|
There are at least two important differences.
I tend to use utf8_general_ci in general, except where sorting is going to be important enough to justify the performance cost, where I'll use utf8_unicode_ci. Alternatively you could just use utf8_unicode_ci all the time, and only worry about performance if and when it becomes a problem. |
|||
|
|
|
See the mysql manual, Unicode Character Sets section:
So to summarize, utf_general_ci uses a smaller and less correct (according to the standard) set of comparisons than utf_unicode_ci which should implement the entire standard. The general_ci set will be faster because there is less computation to do. |
||
|
|
