Rechercher dans le manuel MySQL

12.9.3 Full-Text Searches with Query Expansion

Full-text search supports query expansion (and in particular, its variant blind query expansion). This is generally useful when a search phrase is too short, which often means that the user is relying on implied knowledge that the full-text search engine lacks. For example, a user searching for database may really mean that MySQL, Oracle, DB2, and RDBMS all are phrases that should match databases and should be returned, too. This is implied knowledge.

Blind query expansion (also known as automatic relevance feedback) is enabled by adding WITH QUERY EXPANSION or IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION following the search phrase. It works by performing the search twice, where the search phrase for the second search is the original search phrase concatenated with the few most highly relevant documents from the first search. Thus, if one of these documents contains the word databases and the word MySQL, the second search finds the documents that contain the word MySQL even if they do not contain the word database. The following example shows this difference:

  1. mysql> SELECT * FROM articles
  2.     WHERE MATCH (title,body)
  3.     AGAINST ('database' IN NATURAL LANGUAGE MODE);
  4. +----+-------------------+------------------------------------------+
  5. | id | title             | body                                     |
  6. +----+-------------------+------------------------------------------+
  7. |  1 | MySQL Tutorial    | DBMS stands for DataBase ...             |
  8. |  5 | MySQL vs. YourSQL | In the following database comparison ... |
  9. +----+-------------------+------------------------------------------+
  10. 2 rows in set (0.00 sec)
  11.  
  12. mysql> SELECT * FROM articles
  13.     WHERE MATCH (title,body)
  14.     AGAINST ('database' WITH QUERY EXPANSION);
  15. +----+-----------------------+------------------------------------------+
  16. | id | title                 | body                                     |
  17. +----+-----------------------+------------------------------------------+
  18. |  5 | MySQL vs. YourSQL     | In the following database comparison ... |
  19. |  1 | MySQL Tutorial        | DBMS stands for DataBase ...             |
  20. |  3 | Optimizing MySQL      | In this tutorial we will show ...        |
  21. |  6 | MySQL Security        | When configured properly, MySQL ...      |
  22. |  2 | How To Use MySQL Well | After you went through a ...             |
  23. |  4 | 1001 MySQL Tricks     | 1. Never run mysqld as root. 2. ...      |
  24. +----+-----------------------+------------------------------------------+
  25. 6 rows in set (0.00 sec)

Another example could be searching for books by Georges Simenon about Maigret, when a user is not sure how to spell Maigret. A search for Megre and the reluctant witnesses finds only Maigret and the Reluctant Witnesses without query expansion. A search with query expansion finds all books with the word Maigret on the second pass.

Note

Because blind query expansion tends to increase noise significantly by returning nonrelevant documents, use it only when a search phrase is short.


Find a PHP function

Document created the 26/06/2006, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/mysql-rf-fulltext-query-expansion.html

The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.

References

  1. View the html document Language of the document:en Manuel MySQL : https://dev.mysql.com/

These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.

Contents Haut