Hi,
 
I followed with the below metioned steps and i am not getting the desired 
results.
Let me know if anything else to be done.
 
Regards
Bhaskar

--- On Fri, 9/18/09, AHMET ARSLAN <iori...@yahoo.com> wrote:


From: AHMET ARSLAN <iori...@yahoo.com>
Subject: Re: Exact word search in Solr
To: solr-user@lucene.apache.org
Date: Friday, September 18, 2009, 2:59 AM


> Hi,
>  I am doing exact word search in Solr 1.3 and I am not
> getting the expected results.
> I am giving you the sample XML file along with the mail
> from where search results are fetched.
> The following steps were followed to achieve exact word
> search result in Solr.

You can simply use the fieldType below to achieve this:

<fieldType name="text_ws" class="solr.TextField" positionIncrementGap="100">
<analyzer>
   <tokenizer class="solr.WhitespaceTokenizerFactory"/>
   <filter class="solr.LowerCaseFilterFactory"/>
</analyzer>
</fieldType>

Note that there is no WordDelimiterFilterFactory in this type. But probably 
yours has it.

Hope this helps.






      

Reply via email to