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


PHP Type::deleteByQuery方法代码示例

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


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

示例1: testDeleteByQueryWithQueryAndOptions

 /**
  * @group functional
  */
 public function testDeleteByQueryWithQueryAndOptions()
 {
     $this->_checkPlugin('delete-by-query');
     $index = $this->_createIndex(null, true, 2);
     $type = new Type($index, 'test');
     $doc = new Document(1, array('name' => 'ruflin nicolas'));
     $doc->setRouting('first_routing');
     $type->addDocument($doc);
     $doc = new Document(2, array('name' => 'ruflin'));
     $doc->setRouting('second_routing');
     $type->addDocument($doc);
     $index->refresh();
     $response = $index->search('ruflin*');
     $this->assertEquals(2, $response->count());
     $response = $index->search('ruflin*', array('routing' => 'first_routing'));
     $this->assertEquals(1, $response->count());
     $response = $index->search('nicolas');
     $this->assertEquals(1, $response->count());
     // Route to the wrong document id; should not delete
     $response = $type->deleteByQuery(new SimpleQueryString('nicolas'), array('routing' => 'second_routing'));
     $this->assertTrue($response->isOk());
     $index->refresh();
     $response = $index->search('ruflin*');
     $this->assertEquals(2, $response->count());
     $response = $index->search('nicolas');
     $this->assertEquals(1, $response->count());
     // Delete first document
     $response = $type->deleteByQuery(new SimpleQueryString('nicolas'), array('routing' => 'first_routing'));
     $this->assertTrue($response->isOk());
     $index->refresh();
     // Makes sure, document is deleted
     $response = $index->search('ruflin*');
     $this->assertEquals(1, $response->count());
     $response = $index->search('nicolas');
     $this->assertEquals(0, $response->count());
 }
开发者ID:bungkoko,项目名称:Elastica,代码行数:39,代码来源:TypeTest.php

示例2: testDeleteByQuery

 public function testDeleteByQuery()
 {
     $index = $this->_createIndex();
     $type = new Type($index, 'test');
     $type->addDocument(new Document(1, array('name' => 'ruflin nicolas')));
     $type->addDocument(new Document(2, array('name' => 'ruflin')));
     $index->refresh();
     $response = $index->search('ruflin*');
     $this->assertEquals(2, $response->count());
     $response = $index->search('nicolas');
     $this->assertEquals(1, $response->count());
     // Delete first document
     $response = $type->deleteByQuery('nicolas');
     $this->assertTrue($response->isOk());
     $index->refresh();
     // Makes sure, document is deleted
     $response = $index->search('ruflin*');
     $this->assertEquals(1, $response->count());
     $response = $index->search('nicolas');
     $this->assertEquals(0, $response->count());
 }
开发者ID:kskod,项目名称:Elastica,代码行数:21,代码来源:TypeTest.php


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