I use the Lucene query parser for a simple search interface and I am having some problems. Each record that I keep has some fields that are parsed, and some fields that are not parsed.
When I try to use a query analyzer to create a query that scans as parsed, not parsed fields, the parser processes both fields, which means that the parsed field will never get a match.
Is there a way to tell the query analyzer NOT to parse the field?
source
share