Re: Solr Search in stemmed and non stemmed mode

2009-12-08 Thread Lance Norskog
Short answer: the standard query handler is right for carefully designing queries. The dismax query handler is right for putting a 'search box' in a web page for regular users. On 12/7/09, khalid y wrote: > Thanks, > > I'll read the mail archive. > > Your suggestion is like mine but whitout the D

Re: Solr Search in stemmed and non stemmed mode

2009-12-07 Thread khalid y
Thanks, I'll read the mail archive. Your suggestion is like mine but whitout the DisMax handler. I'm going to read what is this handler. I have one field text and another text_unstemmed where I copy all others fields. I'm writing my custom query handler who check if quotes exists and switch betwe

Re: Solr Search in stemmed and non stemmed mode

2009-12-07 Thread Erick Erickson
Try searching the mail archive for stemmer exact match or similar, this has been discussed multiple times and you'll get more complete discussions wy faster One suggestion is to use two fields, one for the stemmed version and one for the original, then use whichever field you need to via D

Solr Search in stemmed and non stemmed mode

2009-12-07 Thread khalid y
Hi !! I'm looking for a way to have two index in solr one stemmed and another non stemmed. Why ? It's simple :-) My users can do query for : - banking marketing => it return all document matches bank*** and market*** - "banking" marketing => it return all document matches "banking" and market*