Re: Query based stemming

2005-01-07 Thread David Spencer
Jim Lynch wrote: From what I've read, if you want to have a choice, the easiest way is to index the documents twice. Once with stemming on and once with it off placing the results in two different indexes. Then at query time, select which index you want to use based on whether you want stemmin

Re: Query based stemming

2005-01-07 Thread Chris Hostetter
: >Is it possible to enable stem queries on a per-query basis? It doesn't : >seem to be possible since the stem tokenizing is done during the : >indexing process. Are people basically stuck with having all their : >queries stemmed or none at all? : From what I've read, if you want to have a choi

Re: Query based stemming

2005-01-07 Thread Jim Lynch
From what I've read, if you want to have a choice, the easiest way is to index the documents twice. Once with stemming on and once with it off placing the results in two different indexes. Then at query time, select which index you want to use based on whether you want stemming on or off. Jim

Query based stemming

2005-01-07 Thread Peter Kim
Hi, I'm new to Lucene, so I apologize if this issue has been discussed before (I'm sure it has), but I had a hard time finding an answer using google. (Maybe this would be a good candidate for the FAQ!) :) Is it possible to enable stem queries on a per-query basis? It doesn't seem to be possible