On Mon, Nov 24, 2008 at 3:55 AM, finy finy <[EMAIL PROTECTED]> wrote: > hello everyone: > > i use solr 1.2, i find a problem about solr1.2, > > when i search some keyword, i use myself analyzer, i find that solr > consider my terms as PhraseQuery, > > for example,solr parser's result is: PhraseQuery( title:"i am good man"), > but i want to get the query: title:i title:am title:good title:man
If Solr is producing a phrase query, then you hust have surrounded the words in quotes in the query string. To group terms in a field try the following: title:(i am good man) -Yonik