The Solarium documentation for V2 states to add multivalue you use
http://wiki.solarium-project.org/index.php/V2:Read-Write_document#Multivalue_fields
// create a new document for the data
$doc1 = $update->createDocument();
$doc1->id = 123;
$doc1->name = 'testdoc-1';
$doc1->price = 364;
// and a second one
$doc2 = $update->createDocument();
$doc2->id = 124;
$doc2->name = 'testdoc-2';
$doc2->price = 340;
// add the documents and a commit command to the update query
$update->addDocuments(array($doc1, $doc2));
$update->addCommit();
However that doesn't make sense to me, isn't this just adding two different documents, how it is using the multiValue feature of solr schema.xml?
The V1 example made more sense to me unfortunately I am not using this version
http://wiki.solarium-project.org/index.php/V1:Read-Write_document
// set a field value with the setField method, including a boost
$document->setField('name', 'example doc', 3);
// add two values to a multivalue field
$document->addField('countries', 'NL');
$document->addField('countries', 'UK');
I am using V2 and looping through an array how am I supposed to add the multivalue in V2?
$docArray = array();
$allData = $this->getData();
foreach($allData as $currentData) {
// create a new document for the data
$doc1 = $update->createDocument();
$doc1->entry_id = $currentItem["entry_id"];
$tagArray = explode('|', $currentData["tags"]);
foreach($tagArray as $currentTag) {
$doc1->tag = $currentTag;
}
array_push($docArray, $doc1);
}
$update->addDocuments($docArray);