special-queries.asciidoc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [[specialized-queries]]
  2. == Specialized queries
  3. This group contains queries which do not fit into the other groups:
  4. <<query-dsl-mlt-query,`more_like_this` query>>::
  5. This query finds documents which are similar to the specified text, document,
  6. or collection of documents.
  7. <<query-dsl-script-query,`script` query>>::
  8. This query allows a script to act as a filter. Also see the
  9. <<query-dsl-function-score-query,`function_score` query>>.
  10. <<query-dsl-script-score-query,`script_score` query>>::
  11. A query that allows to modify the score of a sub-query with a script.
  12. <<query-dsl-percolate-query,`percolate` query>>::
  13. This query finds queries that are stored as documents that match with
  14. the specified document.
  15. <<query-dsl-feature-query,`feature` query>>::
  16. A query that computes scores based on the values of numeric features and is
  17. able to efficiently skip non-competitive hits.
  18. <<query-dsl-wrapper-query,`wrapper` query>>::
  19. A query that accepts other queries as json or yaml string.
  20. include::mlt-query.asciidoc[]
  21. include::script-query.asciidoc[]
  22. include::script-score-query.asciidoc[]
  23. include::percolate-query.asciidoc[]
  24. include::feature-query.asciidoc[]
  25. include::wrapper-query.asciidoc[]