InterviewSolution
Saved Bookmarks
| 1. |
Which parameter determines the shortest words to index in FULLTEXT indexes?(a) ft_min_word_len(b) ft_min_len_word(c) ft_word_min_len(d) ft_word_len_wordI had been asked this question during an interview.My question is taken from Using Full Text Searches in chapter Using SQL to Manage Data of MySQL |
|
Answer» RIGHT option is (a) ft_min_word_len Easy explanation: There are MANY full-text PARAMETERS that are configurable. They can be modified by setting the system variables accordingly. The ‘ft_min_word_len’ parameter DETERMINES the shortest words to INDEX in FULLTEXT indexes. |
|