Actually I would guess that performence should be fine. I would look at
the code generated by the standard analyzer,
http://jakarta.apache.org/lucene/docs/api/org/apache/lucene/analysis/ standard/package-summary.html
which translates from "(a AND b) OR c" to "+a +b c" and then see what it does with it.
Huh? StandardAnalyzer does not do that type of translation. QueryParser is what parses "(a AND b) OR c" into a nested BooleanQuery.
Query.toString is what will visually turn it into the +/- view.
Erik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
