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 guess this is an easy question but I seem to be unable to find it in the documentation or the Solr wiki.

So, I just need to know how the syntax for adding a multi value field (arr) is.

I know you can add any other field like

<add>
 <doc>
  <field name="fieldname">fieldvalue</field>
 </doc>
</add>

Thanks.

share|improve this question

1 Answer

up vote 3 down vote accepted

If you look at some of the example documents that come with Solr, you can just define the same field with multiple values in the xml.

So you could do the following

 <add>
  <doc>
   <field name="fieldname">fieldvalue</field>
   <field name="category">value1</field>
   <field name="category">value2</field>
  </doc>
 </add>

See the examples here - http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_6/solr/example/exampledocs/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.