Full-Text Search Failure: Solution and Enhancements
Your experience with full-text search in MySQL highlights a common pitfall. Using limited data can lead to unsatisfactory results due to the need for text variation. To obtain meaningful outcomes, it's essential to populate the index with a diverse set of data.
Stop Words
MySQL maintains lists of stop words, which are common words such as "is" and "and" that are excluded from search queries. By default, the server uses a pre-compiled list, but you can override this with a custom file via the 'ft_stopword_file' system variable.
Sample Queries
To demonstrate effective full-text search, consider the following queries:
-- Select records matching a single word SELECT * FROM testproduct WHERE MATCH(prod_name) AGAINST('score' IN BOOLEAN MODE); -- Select records matching multiple words SELECT * FROM testproduct WHERE MATCH(prod_name) AGAINST('harpoon +article' IN BOOLEAN MODE);
Natural Language Mode
Using NATURAL LANGUAGE MODE weights matched words based on their relevance, providing a more meaningful sorting of results.
SELECT id,prod_name, match( prod_name ) AGAINST ( '+harpoon +article' IN NATURAL LANGUAGE MODE) AS relevance FROM testproduct ORDER BY relevance DESC
This query assigns a relevance score to each record, allowing you to prioritize the most relevant matches.
Additional Considerations
By understanding these nuances and providing your search index with sufficient variety, you can overcome the limitations you initially encountered and harness the power of full-text search in MySQL.
The above is the detailed content of How Can I Improve Full-Text Search Accuracy and Efficiency in MySQL?. For more information, please follow other related articles on the PHP Chinese website!