update : 2015.11.03
php.shukuma.com검색:
|
SolrClient::addDocument(PECL solr >= 0.9.2) SolrClient::addDocument — Adds a document to the index 설명
public SolrUpdateResponse SolrClient::addDocument
( SolrInputDocument
$doc
[, bool $overwrite = true
[, int $commitWithin = 0
]] )This method adds a document to the index. 인수
반환값Returns a SolrUpdateResponse object or 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. 예제
Example #1 SolrClient::addDocument() example
<?php 위 예제의 출력 예시: SolrObject Object ( [responseHeader] => SolrObject Object ( [status] => 0 [QTime] => 1 ) )
Example #2 SolrClient::addDocument() example 2
<?php 위 예제의 출력 예시: SolrObject Object ( [responseHeader] => SolrObject Object ( [status] => 0 [QTime] => 1 ) ) 참고
|