Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16207 программистов и 1779 роботов. Сейчас ищут 1726 программистов ...
SolrClient::deleteByQuery - Deletes all documents matching the given query
Вернуться к: SolrClient
SolrClient::deleteByQuery
(PECL solr >= 0.9.2)
SolrClient::deleteByQuery — Deletes all documents matching the given query
Описание
Deletes all documents matching the given query.
Список параметров
-
query
-
The query
Возвращаемые значения
Returns a SolrUpdateResponse on success and throws an exception on failure.
Ошибки
Throws SolrClientException if the client had failed, or there was a connection issue.
Throws SolrServerException if the Solr Server had failed to process the request.
Примеры
Пример #1 SolrQuery::deleteByQuery() example
<?php
$options = array
(
'hostname' => SOLR_SERVER_HOSTNAME,
'login' => SOLR_SERVER_USERNAME,
'password' => SOLR_SERVER_PASSWORD,
'port' => SOLR_SERVER_PORT,
);
$client = new SolrClient($options);
//This will erase the entire index
$client->deleteByQuery("*:*");
$client->commit();
?>
Смотрите также
- SolrClient::deleteById() - Delete by Id
- SolrClient::deleteByIds() - Deletes by Ids
- SolrClient::deleteByQueries() - Removes all documents matching any of the queries
Вернуться к: SolrClient