On 2/4/07, rubdabadub <[EMAIL PROTECTED]> wrote:
Suppose you have a field name with data - Sony CLT2134 handheld camera. When doing a phrase search like "Sony Camera" or "sony handheld" -- Solr returns 0 results. Often time our searchers doesn't know the model number but perform phrase search.. How do I solve this issue?
If you are controlling the query structure you could - use a sloppy phrase query... "sony handheld"~10 - use the dismax handler to create a different query structure - don't use a phrase query at all... change the default operator to and (q.op=AND) to require both terms. -Yonik