Re: Query parsing - difference between Analysis and parsedquery_toString output [SOLVED]

2014-10-20 Thread tinush
Thanks guys for a quick reply, Adding ( ) to query values resolved the issue! Tanya -- View this message in context: http://lucene.472066.n3.nabble.com/Query-parsing-difference-between-Analysis-and-parsedquery-toString-output-tp4164851p4164912.html Sent from the Solr - User mailing list arch

Re: Query parsing - difference between Analysis and parsedquery_toString output

2014-10-19 Thread Ramzi Alqrainy
"q": "manufacture_t:The Hershey Company^100 OR title_t:The Hershey Company^1000" Firstly, Make sure that manufacture_t and title_t are text_general type, and Let's use this approach instead of your approach q=The Hershey Company&q.op=AND&qf=manufacture_t title_t&defType=edismax -- View thi

Re: Query parsing - difference between Analysis and parsedquery_toString output

2014-10-19 Thread Erick Erickson
This trips _everybody_ up. Analysis doesn't happen until things get through the query parser. So, let's assume your query is q=manufacture_t:The Hershey Company^100 OR title_t:The Hershey Company^1000 The problem is that the query _parser_ doesn't understand that your intent is that "the hershey c

Query parsing - difference between Analysis and parsedquery_toString output

2014-10-19 Thread tinush
Hi, I use Solr 4.9 and imported about 20K documents from CSV data. In schema there is following definition for text_general field which I want to process by tokenization, stop word removal, stemming.