On Jul 6, 2005, at 3:01 PM, Yousef Ourabi wrote:

Quick question on the proper-way of searching multiple fields for phrases?

Would I do this:
BooleanQuery titleOrContent = new BooleanQuery();
PhraseQuery titlePhraseSearch = new PhraseQuery(); (add filed x, and term 1, 2) PhraseQuery contentPhraseSearch = new PhraseQuery(); (add field y, and term 2,4)

OR

PhraseQuery phraseQuery = new PhraseQuery(); add field x, t 1,2 then
add field y, t 2 4?

With those two options, you don't really have a choice. PhraseQuery only can use a single field. It doesn't really make sense for it to be otherwise.

    Erik


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to