mlt-query.asciidoc 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [[query-dsl-mlt-query]]
  2. === More Like This Query
  3. More like this query find documents that are "like" provided text by
  4. running it against one or more fields.
  5. [source,js]
  6. --------------------------------------------------
  7. {
  8. "more_like_this" : {
  9. "fields" : ["name.first", "name.last"],
  10. "like_text" : "text like this one",
  11. "min_term_freq" : 1,
  12. "max_query_terms" : 12
  13. }
  14. }
  15. --------------------------------------------------
  16. `more_like_this` can be shortened to `mlt`.
  17. The `more_like_this` top level parameters include:
  18. [cols="<,<",options="header",]
  19. |=======================================================================
  20. |Parameter |Description
  21. |`fields` |A list of the fields to run the more like this query against.
  22. Defaults to the `_all` field.
  23. |`like_text` |The text to find documents like it, *required*.
  24. |`percent_terms_to_match` |The percentage of terms to match on (float
  25. value). Defaults to `0.3` (30 percent).
  26. |`min_term_freq` |The frequency below which terms will be ignored in the
  27. source doc. The default frequency is `2`.
  28. |`max_query_terms` |The maximum number of query terms that will be
  29. included in any generated query. Defaults to `25`.
  30. |`stop_words` |An array of stop words. Any word in this set is
  31. considered "uninteresting" and ignored. Even if your Analyzer allows
  32. stopwords, you might want to tell the MoreLikeThis code to ignore them,
  33. as for the purposes of document similarity it seems reasonable to assume
  34. that "a stop word is never interesting".
  35. |`min_doc_freq` |The frequency at which words will be ignored which do
  36. not occur in at least this many docs. Defaults to `5`.
  37. |`max_doc_freq` |The maximum frequency in which words may still appear.
  38. Words that appear in more than this many docs will be ignored. Defaults
  39. to unbounded.
  40. |`min_word_length` |The minimum word length below which words will be
  41. ignored. Defaults to `0`.(Old name "min_word_len" is deprecated)
  42. |`max_word_length` |The maximum word length above which words will be
  43. ignored. Defaults to unbounded (`0`). (Old name "max_word_len" is deprecated)
  44. |`boost_terms` |Sets the boost factor to use when boosting terms.
  45. Defaults to `1`.
  46. |`boost` |Sets the boost value of the query. Defaults to `1.0`.
  47. |`analyzer` |The analyzer that will be used to analyze the text.
  48. Defaults to the analyzer associated with the field.
  49. |=======================================================================