On 11/4/07, Yu-Hui Jin <[EMAIL PROTECTED]> wrote:
> Let's say we defined a customer filed type that when querying and indexing,
> the solr.LowerCaseFilterFactory is used as the last filter to low-case all
> letters.  In the Analysis UI, we found tokenization is working correctly.
>
> We also defined  a custom request handler which always creates a boolean
> query that ANDs all tokens for fielded queries (we overrided the
> "getFieldQuery" method only).

First, if all you are doing is ANDing all the tokens, you can just
change the default operator to "AND" (q.op="AND").

Analysis is done during query parsing by the query parser... if you
create your own queries, you need to do that analysis yourself.

-Yonik

Reply via email to