Hi guys,
How do I set up the index to search for mutiple partial matches? Something like Contains Any? E.g.:
....?Name=John, Peter
would return items where the name is John Doe, Peter Pen, John Petersen and so on.
Imar
Hi guys,
How do I set up the index to search for mutiple partial matches? Something like Contains Any? E.g.:
....?Name=John, Peter
would return items where the name is John Doe, Peter Pen, John Petersen and so on.
Imar
First you make sure the field is indexed "Analyzed" (That is default behavior). Analyzed will split the values by word, make it case insensitive etc. You can use different analyzers.
Then make a search where your parameter is an array type. See dump.
Excellent, thanks. We'll give that a try.
Imar
You must be logged in to post in the forum