On 9/15/05, James Huang <[EMAIL PROTECTED]> wrote:
> 
> Suppose I have a book index with field="publisher", field="title", etc.
> I want to search for books only from "Manning", do I have to do anything 
> special? how?
> 

add new BooleanClause(new TermQuery(new Term("publisher","Manning")), true, 
false) to your BooleanQuery

Reply via email to