Hi,
I need to know how can I retrieve phonetic codes. Does solr provide it as
part of result? I need codes for record matching.
*following is schema fragment:*
<fieldtype name="phonetic" stored="true" indexed="true"
class="solr.TextField" >
<analyzer type="index">
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="solr.DoubleMetaphoneFilterFactory" inject="true"
maxCodeLength="4"/>
</analyzer>
</fieldtype>
<field name="firstname" type="text_general" indexed="true" stored="true"/>
<field name="firstname_phonetic" type="phonetic" />
<field name="lastname_phonetic" type="phonetic" />
<field name="lastname" type="text_general" indexed="true" stored="true"/>
<copyField source="lastname" dest="lastname_phonetic"/>
<copyField source="firstname" dest="firstname_phonetic"/>
Hi,
Thanks for response, I can see generated MetaPhone codes using Luke. I am
using solr only because it creates the phonetic code at time of indexing.
Otherwise for each record I need to call Metaphone algorithm in realtime to
get the codes and compare them. I think when luke can read and display it,
why can't solr?