downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

SolrClient::deleteByIds> <SolrClient::__construct
[edit] Last updated: Fri, 23 Mar 2012

view this page in

SolrClient::deleteById

(PECL solr >= 0.9.2)

SolrClient::deleteByIdDelete by Id

Açıklama

public SolrUpdateResponse SolrClient::deleteById ( string $id )

Deletes the document with the specified ID. Where ID is the value of the uniqueKey field declared in the schema

Değiştirgeler

id

The value of the uniqueKey field declared in the schema

Dönen Değerler

Returns a SolrUpdateResponse on success and throws a SolrClientException on failure.

Ayrıca Bakınız



add a note add a note User Contributed Notes SolrClient::deleteById
litzinger at gmail dot com 22-Aug-2011 02:47
May need to run commit() after a delete query.

<?php
$this
->solrClient->deleteByQuery('id:'.$entryId);
$result = $this->solrClient->commit();
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites