This repository has been archived by the owner. It is now read-only.
Elasitcsearch Full Text search strategies. #19
Closed
Comments
Query String QueryThe The differentiating components here are the top level parameters like The |
Multi Match QueryThe The way the
|
#24 PR Fixed this issue. Using the |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The current search implementation uses
match
query DSL, the standard query for performing full-text queries, including fuzzy matching and phrase or proximity queries. Link >>Match Query
This query is of
boolean
type and the search query goes through analysis phase and it also supports theoperator
flag forand
,or
(or
being the default). It supports the boolean clauses,should
,must
,must_not
.The
match
query supports multi-terms synonym expansion with the synonym_graph token filter. By default the parameterauto_generate_synonyms_phrase_query
is set totrue
.This issue explores other alternatives to the current implementation.
The text was updated successfully, but these errors were encountered: