Re: Search in String and Text_en fields simultaneously with edismax

2013-02-28 Thread Jack Krupansky
ebruary 28, 2013 11:33 AM To: solr-user@lucene.apache.org Subject: RE: Search in String and Text_en fields simultaneously with edismax Ah OK. I didn't have a good view of query parsing vs query generation. Thanks for clearing this up. So it means that searching in a tokenized and non-

RE: Search in String and Text_en fields simultaneously with edismax

2013-02-28 Thread Burgmans, Tom
arsed as multiple tokens for the tokenized field ? If possible, I'd like to avoid writing my own query parser. -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: Thursday 28 February 2013 05:05 To: solr-user@lucene.apache.org Subject: Re: Search in

Re: Search in String and Text_en fields simultaneously with edismax

2013-02-28 Thread Jack Krupansky
Query text is always "tokenized" (more properly, "parsed"), unless the text is enclosed in quotes or spaces are escaped with backslash. Try: q=valueadd:"test . test2" or q=valueadd:test\ .\ test2 Parentheses simply provide grouping, either to control boolean operator evaluation order or to a