当前位置: 首页>>代码示例>>PHP>>正文


PHP Document::setUpsert方法代码示例

本文整理汇总了PHP中Elastica\Document::setUpsert方法的典型用法代码示例。如果您正苦于以下问题:PHP Document::setUpsert方法的具体用法?PHP Document::setUpsert怎么用?PHP Document::setUpsert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Elastica\Document的用法示例。


在下文中一共展示了Document::setUpsert方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testUpdateDocumentByDocumentWithUpsert

 /**
  * @group functional
  */
 public function testUpdateDocumentByDocumentWithUpsert()
 {
     $index = $this->_createIndex();
     $type = $index->getType('test');
     $client = $index->getClient();
     $newDocument = new Document(1, array('field1' => 'value1updated', 'field2' => 'value2updated'));
     $upsert = new Document(1, array('field1' => 'value1', 'field2' => 'value2'));
     $newDocument->setUpsert($upsert);
     $client->updateDocument(1, $newDocument, $index->getName(), $type->getName(), array('fields' => '_source'));
     $document = $type->getDocument(1);
     $this->assertInstanceOf('Elastica\\Document', $document);
     $data = $document->getData();
     $this->assertArrayHasKey('field1', $data);
     $this->assertEquals('value1', $data['field1']);
     $this->assertArrayHasKey('field2', $data);
     $this->assertEquals('value2', $data['field2']);
     // should use update document because document exists, upsert document values are ignored
     $client->updateDocument(1, $newDocument, $index->getName(), $type->getName(), array('fields' => '_source'));
     $document = $type->getDocument(1);
     $this->assertInstanceOf('Elastica\\Document', $document);
     $data = $document->getData();
     $this->assertArrayHasKey('field1', $data);
     $this->assertEquals('value1updated', $data['field1']);
     $this->assertArrayHasKey('field2', $data);
     $this->assertEquals('value2updated', $data['field2']);
 }
开发者ID:bungkoko,项目名称:Elastica,代码行数:29,代码来源:ClientTest.php

示例2: testUpsert

 /**
  * @group unit
  */
 public function testUpsert()
 {
     $document = new Document();
     $upsert = new Document();
     $upsert->setData(array('someproperty' => 'somevalue'));
     $this->assertFalse($document->hasUpsert());
     $document->setUpsert($upsert);
     $this->assertTrue($document->hasUpsert());
     $this->assertSame($upsert, $document->getUpsert());
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:13,代码来源:DocumentTest.php


注:本文中的Elastica\Document::setUpsert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。