What index option needs to be changed only exact substrings are considered matches? #356
Unanswered
jkwilliams375
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a search index and some data to search over. When I search 'cop' over the data, I get back matches for words: 'cooped', 'copped', 'cop'. I do want forward indexing so that searching 'cop' returns 'cop' as well as 'copped'. But how can I modify this index's settings so that it does not return 'cooped' since the substring 'cop' does not actually exist in the word? Results should be: 'cop', 'copped'.
Beta Was this translation helpful? Give feedback.
All reactions