https://cwiki.apache.org/confluence/display/solr/Phonetic+Matching

didnt work for you?


On 01/19/2017 05:58 AM, PAVAN wrote:
Hi,

I am trying to implement phonetic search in my application. Below are
indexed terms in solr.

"satpura private limited"

when user search with "satpuda"  it has to display the above result. Below
is the configuration

<fieldtype name="phonetic_match" class="solr.TextField" >
                <analyzer>
                        <tokenizer class="solr.WhitespaceTokenizerFactory"/>
                        <filter class="solr.LowerCaseFilterFactory"/>
                        <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" />
                        <filter class="solr.BeiderMorseFilterFactory" 
nameType="GENERIC"
                        ruleType="APPROX" concat="true" languageSet="auto" />
                </analyzer>
         </fieldtype>

Please help me how to implement phonetic search.






--
View this message in context: 
http://lucene.472066.n3.nabble.com/Phonetic-Search-tp4314828.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to