Re: Matching exact words

2010-08-26 Thread Erick Erickson
See below: On Thu, Aug 26, 2010 at 10:24 AM, ahammad wrote: > > Hello Erick, > > Thanks for the reply. I am a little confused by this whole stemming thing. > What exactly does it refer to? > In your schema file, for the "text" field type, you'll see a line like: Which inserts the a stemmer in

Re: Matching exact words

2010-08-26 Thread ahammad
Hello Erick, Thanks for the reply. I am a little confused by this whole stemming thing. What exactly does it refer to? Basically, I already have a field which is essentially a collection of many other fields (done using copyField). This field is a text field. So what you're saying is to have a d

Re: Matching exact words

2010-08-26 Thread Erick Erickson
You'll have to change your index I'm afraid. The problem is that all the index sees is the stemmed version (assuming you're stemming at index time). There's no information in the index about what the original version was, so it's impossible to back this out. One solution is to use copyfield to mak