public function DrupalApacheSolrService::deleteById in Apache Solr Search 6.3
Same name and namespace in other branches
- 8 Drupal_Apache_Solr_Service.php \DrupalApacheSolrService::deleteById()
- 7 Drupal_Apache_Solr_Service.php \DrupalApacheSolrService::deleteById()
Create a delete document based on document ID
Parameters
string $id Expected to be utf-8 encoded:
float $timeout Maximum expected duration of the delete operation on the server (otherwise, will throw a communication exception):
Return value
response object
Throws
Exception If an error occurs during the service call
Overrides DrupalApacheSolrServiceInterface::deleteById
File
- ./
Drupal_Apache_Solr_Service.php, line 757
Class
- DrupalApacheSolrService
- Starting point for the Solr API. Represents a Solr server resource and has methods for pinging, adding, deleting, committing, optimizing and searching.
Code
public function deleteById($id, $timeout = 3600) {
return $this
->deleteByMultipleIds(array(
$id,
), $timeout);
}