I use Azure Search which in turn uses Lucene. Is there any way to make search not that strict. What I need is when searching for "term" should match documents with terms that contain "term".
Serching fox term should match "PrefixTerm", "TermSuffix", "PrefixTermSuffix"
Serching fox part2 should match "part1part2", "part2part3", "part1part2part3"
I need to run search query which has several terms like
"term part2"
To match documents like:
{ someField:"... PrefixTermSuffix ... part1part2part3 ..." }
{ someField:"... PrefixTerm ... part2part3 ..." }
etc