public function SolrConnectorInterface::coreRestPost in Search API Solr 4.x
Same name and namespace in other branches
- 8.3 src/SolrConnectorInterface.php \Drupal\search_api_solr\SolrConnectorInterface::coreRestPost()
- 8 src/SolrConnectorInterface.php \Drupal\search_api_solr\SolrConnectorInterface::coreRestPost()
- 8.2 src/SolrConnectorInterface.php \Drupal\search_api_solr\SolrConnectorInterface::coreRestPost()
Sends a REST POST request to the Solr core and returns the result.
Parameters
string $path: The path to append to the base URI.
string $command_json: The command to send encoded as JSON.
\Solarium\Core\Client\Endpoint|null $endpoint:
Return value
string The decoded response.
Throws
\Drupal\search_api_solr\SearchApiSolrException
1 method overrides SolrConnectorInterface::coreRestPost()
- SolrConnectorPluginBase::coreRestPost in src/
SolrConnector/ SolrConnectorPluginBase.php - Sends a REST POST request to the Solr core and returns the result.
File
- src/
SolrConnectorInterface.php, line 272
Class
- SolrConnectorInterface
- The Solr connector interface.
Namespace
Drupal\search_api_solrCode
public function coreRestPost($path, $command_json = '', ?Endpoint $endpoint = NULL);