RE: Search exact terms

2008-04-02 Thread Norskog, Lance
lter which maps all European characters to USASCII equivalents. This is also very helpful for multi-language searching. Lance -Original Message- From: Ryan McKinley [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2008 7:06 AM To: solr-user@lucene.apache.org Subject: Re: Search exact ter

Re: Search exact terms

2008-04-02 Thread Ryan McKinley
search is based on the fields you index and how you index them. If you index using the "text" field -- with stemming etc, you will have to search with the same criteria. If you want exact search, consider the "string" type. If you want both, you can use the to copy the same content into

Re: Search exact terms

2008-04-02 Thread Umar Shah
If you want this behavior then the field type should not be 'text'. for default fieldtype=text there are many filters applied before the values are indexed, this includes stemming (reducing the word to root word, removing s in ur case. try using fieldtype=string instead. this will match strictly t

Search exact terms

2008-04-02 Thread Tim Mahy
Hi all, is there a Solr wide setting that with which I can achieve the following : if I now search for q=onderwij, I also receive documents with results of "onderwijs" etc.. this is ofcourse the behavior that is described but if I search on "onderwij", I still get the "onderwijs" hits, I use fo