I have an interesting problem. I need to do a search across multiple columns. I was going to use fulltext for this, but a lot of the keywords are going to be 2-3 characters. I can change the msql setting "ft_min_word_len" to 2 and I believe this will allow for searching of keywords of 2 characters.
My other alternative is going to be using concat_ws or concat and use a like %% statement. From what I've read, this can be very slow using a like statment with wildcards.
Am I going to run into problems changing ft_min_len to 2? I would assume that my index is going to grow quite big, but I'm not that worried about that as space is not an issue.
Any thoughts?