Skip to content

Instantly share code, notes, and snippets.

@MatthewRDodds
Last active July 29, 2016 14:33
Show Gist options
  • Save MatthewRDodds/d21f22c54efb842350debdda43cbce73 to your computer and use it in GitHub Desktop.
Save MatthewRDodds/d21f22c54efb842350debdda43cbce73 to your computer and use it in GitHub Desktop.
Thousand Foot Overview - Elasticsearch Queries

Elasticsearch Querying DSL Overview

TERMS

  • filter A filter is query that either matches a document or doesn't, it's boolean.
  • query A query uses scoring to order results by the degree to which they match the request. Queries are much less performant than filters.

Some queries can contain other queries (bool), some can contain filters (constant_score), and others can contain both (filtered).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment