Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code DEF204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.

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.


Zoek in de MySQL-handleiding

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-fulltext-query-expansion.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:en Manuel MySQL : https://dev.mysql.com/

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut