appbaseio / reactivesearch

Search UI components for React and Vue
https://opensource.appbase.io/reactivesearch
Apache License 2.0
4.89k stars 466 forks source link

Its not searching the contains and postfix string. #1836

Closed atindersingh67 closed 2 years ago

atindersingh67 commented 2 years ago

Discussed in https://github.com/appbaseio/reactivesearch/discussions/1835

Originally posted by **atindersingh67** January 5, 2022 I am using reactive search . Its searching the text with prefix only, but its not search text with postfix and contains. For eg. i have description filed with the data 'product1 BN2445 with red color' if search for 'prod' , 'red' or 'color' its giving me results, But if i search with '2445' its not giving me result, My index creation code is below, `POST /product2/product { "settings": { "index": { "analysis" : { "analyzer":{ "autosuggest_analyzer": { "filter": [ "lowercase", "asciifolding", "autosuggest_filter" ], "tokenizer": "standard", "type": "custom" }, "ngram_analyzer": { "filter": [ "lowercase", "asciifolding", "ngram_filter" ], "tokenizer": "standard", "type": "custom" } }, "filter": { "autosuggest_filter": { "max_gram": "7", "min_gram": "1", "token_chars": [ "letter", "digit", "punctuation", "symbol" ], "type": "edge_ngram" }, "ngram_filter": { "max_gram": "9", "min_gram": "2", "token_chars": [ "letter", "digit", "punctuation", "symbol" ], "type": "ngram" } } }, "max_ngram_diff":"50" } }, "mappings" : { "properties" : { "@timestamp" : { "type" : "date" }, "@version" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } }, "standardiseddescription" : { "type" : "text", "fields" : { "keyword" : { "type" : "keyword", "ignore_above" : 256 } } } } } }` And my data search component is below ` ` I have already spend 3 days on this. Thanks in advance
stale[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.