Re: How to deal with not analyzed fields and analyzed ones in the same query

2011-06-20 Thread Raf
You can simply use a KeywordAnalyzer for your NOT_ANALYZED fields. This analyzer, in fact, does not modify your input. Regards, *Raf* On Mon, Jun 20, 2011 at 5:12 PM, G.Long wrote: > Ok, I'll try this. > > But will it work if one of the fields has no analyzers assigned ? > > For example field1

Re: How to deal with not analyzed fields and analyzed ones in the same query

2011-06-20 Thread G.Long
Ok, I'll try this. But will it work if one of the fields has no analyzers assigned ? For example field1 is associated with a keyword analyzer, field2 with a standardAnalyzer and field3 has no analyzer because it was indexed as Field.Index.NOT_ANALYZED. Is there something to specify in the co

Re: How to deal with not analyzed fields and analyzed ones in the same query

2011-06-20 Thread Erick Erickson
See PerFieldAnalyzerWrapper, then form your query like field1:word1 OR field2:word1 Best Erick On Mon, Jun 20, 2011 at 10:40 AM, G.Long wrote: > Hi :) > > I know it is possible to create a query on different fields with different > analyzers with PerFieldAnalyzer class but is it possible to also

How to deal with not analyzed fields and analyzed ones in the same query

2011-06-20 Thread G.Long
Hi :) I know it is possible to create a query on different fields with different analyzers with PerFieldAnalyzer class but is it possible to also include fields which are not analyzed ? I want some fields not to be tokenized (an exact reference of an article for example) and others to be tok