> 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