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

search for in the

SolrClient::deleteByIds> <SolrClient::__construct
[edit] Last updated: Fri, 17 May 2013

view this page in

SolrClient::deleteById

(PECL solr >= 0.9.2)

SolrClient::deleteByIdEliminar por Id

Descripción

public SolrUpdateResponse SolrClient::deleteById ( string $id )

Elimina el documento con el ID especificado, donde ID es el valor del campo uniqueKey declarado en el esquema.

Parámetros

id

El valor del campo uniqueKey declarado en el esquema

Valores devueltos

Devuelve un objeto SolrUpdateResponse en caso de éxito y lanza una excepción SolrClientException en caso de fallo.

Ver también



add a note add a note User Contributed Notes SolrClient::deleteById - [1 notes]
up
0
litzinger at gmail dot com
1 year ago
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