Its not searching the contains and postfix string. #1835
-
I am using reactive search . Its searching the text with prefix only, but its not search text with postfix and contains. My index creation code is below, "settings": {
}` And my data search component is below
I have already spend 3 days on this. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You're doing an infix search over here, for doing this effectively, you need to use a n-gram analyzer.
Now change the data field in your search to |
Beta Was this translation helpful? Give feedback.
@atindersingh67
You're doing an infix search over here, for doing this effectively, you need to use a n-gram analyzer.
Now change the data field in your search to
standardiseddescription.infix-search
.