Thanks  Shawn for quick response.......

As suggested, I verified my configuration  to check whether the update
processors configured or not and found no processors configured. I am just
wonder how the format getting changed.

Let explain my problem in details

I am indexing the .xml file to solr. and below is field configuration.

* schema.xml* (giving for a field)
=================================

*1. Filed::* 

<field name="Resolution" type="text_general" indexed="true"
multiValued="true" stored="true"/>

*2. Field Type & tokenizers*

<fieldType name="text_general" class="solr.TextField"
positionIncrementGap="100" autoGeneratePhraseQueries="true">
      <analyzer type="index">
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true" />
                
        <filter class="solr.LowerCaseFilterFactory"/>
                <filter class="solr.EdgeNGramFilterFactory" minGramSize="1" 
maxGramSize="25" side="front"/>
      </analyzer>
      <analyzer type="query">
        <tokenizer class="solr.StandardTokenizerFactory"/>
        <filter class="solr.StopFilterFactory" ignoreCase="true"
words="stopwords.txt" enablePositionIncrements="true" />
        
                <filter class="solr.SynonymFilterFactory" 
synonyms="synonyms.txt"
ignoreCase="true" expand="false" />
                <filter class="solr.PositionFilterFactory" />
        <filter class="solr.LowerCaseFilterFactory"/>
                <filter class="solr.WordDelimiterFilterFactory" 
catenateAll="1"/>
      </analyzer>
    </fieldType>



3. *before doing the index, data is in below format*

<field name="Resolution">*Issue:* ID country user XXXXXXXXX; unable xxx
wsdfsdfs sdsdfs

*Impact / Suspected Impact*: asa asdasdaav asdffcasdfassd

*Rootcause:* asdfas asdfasdwersdvsdv sdfsdfcss 

(1). test 12, (2).tesst 123</field>

4. *After index the  data* the data is displaying in the below format 

*Issue:* ID country user XXXXXXXXX; unable xxx wsdfsdfs sdsdfs*Impact /
Suspected Impact*: asa asdasdaav asdffcasdfassd *Rootcause:* asdfas
asdfasdwersdvsdv sdfsdfcss (1). test 12, (2).tesst 123


Could you please guide me to display the search result as same as input
format even after index..
if any update processors need to add.... what processors have to add...... 
Thanks in Advance 



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Apache-Solr-with-Tomcat-displaying-the-input-format-in-the-search-results-tp4098040p4098183.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to