Download the PDF: http://www.mysqlfulltextsearch.com/full_text.pdf
Default search by relevance, default sort is by relevance
Boolean search is also popular. cats AND dogs. No default sorting, so you need to order the results yourself
Phrase search
MySQL Full Text Index, only available with MyISAM, and it supports natural language and Boolean search. ft_min_word_len - 4 characters per word by default is indexed. Frequency based ranking, doesn’t count distance between words
SELECT * FROM articles WHERE MATCH (title,body) AGAINST (’database’ IN NATURAL LANGUAGE MODE);
For Boolean, you use AGAINST (’cat AND dog’ IN BOOLEAN MODE).
n-gram fulltext plugin for CJK languages are available as plugins
DRBD and MySQL FullText search? DRBD requires InnoDB, when there is a failover, DRBD needs to …
[Read more]