Re: Matching an exact word

2013-02-21 Thread Sebastian Saip
to write a custom query parser (extending upon > something like the QParser)? > > > > -Original Message- > > From: Upayavira [mailto:u...@odoko.co.uk] > > Sent: Thursday, February 21, 2013 12:22 PM > > To: solr-user@lucene.apache.org > > Subject: Re: Matching an

Re: Matching an exact word

2013-02-21 Thread SUJIT PAL
solr-user@lucene.apache.org > Subject: Re: Matching an exact word > > Solr will only match on the terms as they are in the index. If it is stemmed > in the index, it will match that. If it isn't, it'll match that. > > All term matches are (by default at least) exact matc

RE: Matching an exact word

2013-02-21 Thread Van Tassell, Kristian
Thank you. So essentially I need to write a custom query parser (extending upon something like the QParser)? -Original Message- From: Upayavira [mailto:u...@odoko.co.uk] Sent: Thursday, February 21, 2013 12:22 PM To: solr-user@lucene.apache.org Subject: Re: Matching an exact word Solr

Re: Matching an exact word

2013-02-21 Thread Upayavira
Solr will only match on the terms as they are in the index. If it is stemmed in the index, it will match that. If it isn't, it'll match that. All term matches are (by default at least) exact matches. Only with stemming you are doing an exact match against the stemmed term. Therefore, there really