special-queries.asciidoc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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-percolate-query,`percolate` query>>::
  11. This query finds queries that are stored as documents that match with
  12. the specified document.
  13. <<query-dsl-feature-query,`feature` query>>::
  14. A query that computes scores based on the values of numeric features and is
  15. able to efficiently skip non-competitive hits.
  16. <<query-dsl-wrapper-query,`wrapper` query>>::
  17. A query that accepts other queries as json or yaml string.
  18. include::mlt-query.asciidoc[]
  19. include::script-query.asciidoc[]
  20. include::percolate-query.asciidoc[]
  21. include::feature-query.asciidoc[]
  22. include::wrapper-query.asciidoc[]