Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to copy the content of one field to multiple other fields (not just one). Currently it is only copied to the last field in the list. I only found examples with one one copy.

In solrindex-mapping.xml:

    ...
    <fields>
    <field dest="content" source="content"/>
    <copyField source="content" dest="Location"/>
    <copyField source="content" dest="Province"/>
    </fields>        
    ...

In schema.xml:

    <fieldType name="text" class="solr.TextField"
        positionIncrementGap="100">
        <analyzer>
            <tokenizer class="solr.WhitespaceTokenizerFactory"/>
            <filter class="solr.StopFilterFactory"
                ignoreCase="true" words="stopwords.txt"/>
            <filter class="solr.WordDelimiterFilterFactory"
                generateWordParts="1" generateNumberParts="1"
                catenateWords="1" catenateNumbers="1" catenateAll="0"
                splitOnCaseChange="1"/>
            <filter class="solr.LowerCaseFilterFactory"/>
            <filter class="solr.EnglishPorterFilterFactory"
                protected="protwords.txt"/>
            <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
        </analyzer>
    </fieldType>

<fieldType name="Location" class="solr.TextField" positionIncrementGap="100">
   <analyzer type="index">
     <charFilter class="solr.HTMLStripCharFilterFactory"/>
     <charFilter class="solr.MappingCharFilterFactory" mapping="charactermapping.txt"/>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
         <filter class="solr.TrimFilterFactory"/>
        <filter class="solr.ShingleFilterFactory" maxShingleSize="2" outputUnigrams="true"/> 
     <filter class="solr.KeepWordFilterFactory" words="locations.txt" ignoreCase="false"/>
     <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
   </analyzer>
 </fieldType>

    <fieldType name="Province" class="solr.TextField" positionIncrementGap="100">
   <analyzer type="index">
     <charFilter class="solr.HTMLStripCharFilterFactory"/>
     <charFilter class="solr.MappingCharFilterFactory" mapping="charactermapping.txt"/>
     <tokenizer class="solr.WhitespaceTokenizerFactory"/>
         <filter class="solr.TrimFilterFactory"/>
        <filter class="solr.ShingleFilterFactory" maxShingleSize="2" outputUnigrams="true"/>
     <filter class="solr.KeepWordFilterFactory" words="provinces.txt" ignoreCase="false"/>   
     <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
   </analyzer>
 </fieldType>
...
<field name="content" type="text" stored="true" indexed="true"/>
<field name="Location" type="Location" indexed="true" stored="true" multiValued="false" />
<field name="Province" type="Province" indexed="true" stored="true" multiValued="false" /> 
...

This is what I expect to receive back when only looking at .../solr/select/?q=*:*:

<doc>
  <str name="content">This document is about Tonronto in Ontario</str>
  <str name="Location">This document is about Tonronto in Ontario</str>
  <str name="Province">This document is about Tonronto in Ontario</str>
</doc>

The Location field is not indexed.

The fieldType definitions are to enable faceted browsing.

It seems that only the last copyField statement is used. If I switch Location and Province, with then Location being the last copyField statement, then Province is not indexed.

Any ideas? Or can there be only one copyField per source?

Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.