data_to_be_indexed.xml
<http://lucene.472066.n3.nabble.com/file/t493675/data_to_be_indexed.xml>  
schema.xml <http://lucene.472066.n3.nabble.com/file/t493675/schema.xml>  

*above I uploaded a copy of my schema and data*

*I have this in my schema.xml*

    <field name="name_suggest_edge" type="text_suggest_edge" indexed="true"
stored="true" multiValued="true"/>

    <copyField source="name_ar" dest="name_suggest_edge" maxChars="30000" />
    <copyField source="name_en" dest="name_suggest_edge" maxChars="30000" />

    <fieldType name="text_suggest_edge" class="solr.TextField">
          <analyzer type="index">
            <tokenizer class="solr.StandardTokenizerFactory"/>
            <filter class="solr.WordDelimiterGraphFilterFactory"
generateWordParts="1" generateNumberParts="1" catenateWords="0"
catenateNumbers="0" catenateAll="0" splitOnCaseChange="1"/>
            <filter class="solr.LowerCaseFilterFactory"/>
            <filter class="solr.ArabicNormalizationFilterFactory"/>
            <filter class="solr.EdgeNGramFilterFactory" maxGramSize="20"
minGramSize="1"/>
          </analyzer>
          <analyzer type="query">
            <tokenizer class="solr.StandardTokenizerFactory"/>
            <filter class="solr.WordDelimiterGraphFilterFactory"
generateWordParts="0" generateNumberParts="0" catenateWords="0"
catenateNumbers="0" catenateAll="0" splitOnCaseChange="0"/>
            <filter class="solr.LowerCaseFilterFactory"/>
            <filter class="solr.ArabicNormalizationFilterFactory"/>
          </analyzer>
    </fieldType>

*when using analysis on admin page it works and it does match as you can see
from the picture below:*

<http://lucene.472066.n3.nabble.com/file/t493675/solr_analysis.png> 


*I have this doc in indexed/stored. I can match it on other fields like
name_suggest_exact or name_sugget_ngram but never matches on
name_sugget_edge. I indexed the data multiple times and index is optimized.
what could be the issue here? this is really confusing*

<http://lucene.472066.n3.nabble.com/file/t493675/name_exact.png> 
<http://lucene.472066.n3.nabble.com/file/t493675/edge.png> 




--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html

Reply via email to