Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
1  
The example demonstrates the boost feature and not setting multivalued fields. For setting multivalued fields I don't see any changes from what you have been doing earlier. – Himanshu Oct 17 '12 at 8:22

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.