Davide
09/02/2021, 11:22 PMIndicates that the last word in the query should be treated as a prefix, and not as a whole word
What does this means exactly?Kishore Nallan
09/03/2021, 1:14 AMsample query
With prefix=true: a record containing the text "sample querying" will match because "query" is a prefix match on "querying"
With prefix=false: "sample querying" will not match because the last word will NOT be used as a prefix search, but as an exact whole word search.