Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16207 программистов и 1779 роботов. Сейчас ищут 1726 программистов ...
SolrClient::request - Sends a raw update request
Вернуться к: SolrClient
SolrClient::request
(PECL solr >= 0.9.2)
SolrClient::request — Sends a raw update request
Описание
Sends a raw XML update request to the server
Список параметров
-
raw_request
-
An XML string with the raw request to the server.
Возвращаемые значения
Returns a SolrUpdateResponse on success. Throws an exception on failure.
Ошибки
Throws SolrIllegalArgumentException if raw_request
was an empty string
Throws SolrClientException if the client had failed, or there was a connection issue.
Throws SolrServerException if the Solr Server had failed to satisfy the query.
Примеры
Пример #1 SolrClient::request() example
<?php
$options = array
(
'hostname' => SOLR_SERVER_HOSTNAME,
'login' => SOLR_SERVER_USERNAME,
'password' => SOLR_SERVER_PASSWORD,
'port' => SOLR_SERVER_PORT,
);
$client = new SolrClient($options);
$update_response = $client->request("<commit/>");
$response = $update_response->getResponse();
print_r($response);
?>
Результатом выполнения данного примера будет что-то подобное:
...
Вернуться к: SolrClient