Hi ,
I am trying to do exact search for term “rebate” enclosed within quotes and it is giving search results for its synonyms also . Please provide us the solution to fix this .
Field configuration :
“content”: {
“type”: “text”,
“analyzer”: “standard_analyzer”,
“search_analyzer”: “standard_search_analyzer”,
“term_vector”: “with_positions_offsets”,
“copy_to”: [“content_minhash_bits”]
},
We are using below anayzers for indexing/searching the document.
“standard_analyzer”: {
“type”: “custom”,
“char_filter”: [
“mapping_filter”
],
“tokenizer”: “standard”,
“filter”: [
“disable_graph”,
“alphanum_word_filter”,
“cjk_bigram”,
“lowercase”,
“asciifolding”,
“stopword_en_filter”,
“english_keywords”,
“english_override”,
“stemmer_en_filter”,
“synonym_filter”
]
},
“standard_search_analyzer”: {
“type”: “custom”,
“char_filter”: [
“mapping_filter”
],
“tokenizer”: “standard”,
“filter”: [
“disable_graph”,
“alphanum_word_filter”,
“cjk_bigram”,
“lowercase”,
“asciifolding”,
“stopword_en_filter”,
“english_keywords”,
“english_override”,
“stemmer_en_filter”
]
}