Chris Mattmann wrote:
 So, one thing it seems is that fields to be indexed, and used in a field
query must be fully lowercase to work? Additionally, it seems that they
can't have symbols in them, such as "_", is that correct? Would you guys
consider this to be a bug?

Yes, this sounds like a bug.

Performing Lucene Query:
using filter QueryFilter(+contactemail:[EMAIL PROTECTED]) and
numHits = 20

051016 190347 11 total hits: 0

A query whose only clause has a boost of 0.0 will return no results. Nutch uses the convention that clauses whose boost is 0.0 may be converted to filters, for efficiency. A filter affects the set of hits, but not their ranking. So a boost of 0.0 is used to declare that a clause does not affect ranking and may not be used in isolation. This makes it akin to searching for "filetype:pdf" on Google--filetype is only used to filter other queries and may not be a standalone query.

Doug

Reply via email to