Peter Veentjer - Anchor Men wrote:
>How can I find all documents with a field (the value doesn`t matter).
>
>I have tried:
>Query query = new TermQuery(new Term(AbstractBaseDoc.FIELD_INDEX_ERROR,""));
>
>
>But this never finds results. The field with name FIELD_INDEX_ERROR has been
>of type Unindex, Text, Keyword but it doesn`t matter.
>
>I have checked the index with Luke, and I did find a document with the
>specified field.. So there are documents.
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
What content does this field have?
I use the following:
To every Document I add Field.Keyword("all","all"); (The values and the
name doesn't matter)
When I search for them i made the following Query query = new
TermQuery(new Term("all","all")); This should return all the fields.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]