Re: Searching phonetic by DoubleMetaphone soundex encoder

2014-02-12 Thread Navaa
hi, Thanks for your reply.. I m beginner of solr kindly elaborate it mor details because in my solrconfig.xml explicit 5 name true json true where I can add this qf parameter for those tw

Re: Searching phonetic by DoubleMetaphone soundex encoder

2014-02-12 Thread Paul Libbrecht
Navaa, You need the query to be sent to the two fields. In dismax, this is easy. Paul On 12 février 2014 14:22:33 HNEC, Navaa wrote: >Hi, >I am using solr for searching phoneticly equivalent string >my schema contains... >positionIncrementGap="100"> > > >

Re: Searching phonetic by DoubleMetaphone soundex encoder

2014-02-12 Thread Paul Libbrecht
Navaa, you need query expansion for that. E.g. if your query goes through dismax, you need to add the two field names to the qf parameter. The nice thing is that qf can be: text^3.0 test.stemmed^2 text.phonetic^1 And thus exact matches are preferred to stemmed or phonetic matches. This is conf