update : 2015.11.03
php.shukuma.com
|
The SolrClient class
The SolrClient class
(PECL solr >= 0.9.2)
소개
Used to send requests to a Solr server. Currently, cloning and serialization of SolrClient instances is not supported.
클래스 개요
final
SolrClient
{
public void addDocuments
( array $docs
[, bool $overwrite = true
[, int $commitWithin = 0
]] )
public SolrUpdateResponse commit
([ bool $softCommit = false
[, bool $waitSearcher = true
[, bool $expungeDeletes = false
]]] )
public SolrUpdateResponse deleteById
( string $id
)
public SolrQueryResponse getById
( string $id
)
public SolrQueryResponse getByIds
( array $ids
)
public SolrUpdateResponse optimize
([ int $maxSegments = 1
[, bool $softCommit = true
[, bool $waitSearcher = true
]]] )
public SolrPingResponse ping
( void
)
public SolrUpdateResponse request
( string $raw_request
)
public SolrUpdateResponse rollback
( void
)
public bool setServlet
( int $type
, string $value
)
}
예약 상수
SolrClient::SEARCH_SERVLET_TYPE
-
Used when updating the search servlet.
SolrClient::UPDATE_SERVLET_TYPE
-
Used when updating the update servlet.
SolrClient::THREADS_SERVLET_TYPE
-
Used when updating the threads servlet.
SolrClient::PING_SERVLET_TYPE
-
Used when updating the ping servlet.
SolrClient::TERMS_SERVLET_TYPE
-
Used when updating the terms servlet.
SolrClient::SYSTEM_SERVLET_TYPE
-
Used when retrieving system information from the system servlet.
SolrClient::DEFAULT_SEARCH_SERVLET
-
This is the intial value for the search servlet.
SolrClient::DEFAULT_UPDATE_SERVLET
-
This is the intial value for the update servlet.
SolrClient::DEFAULT_THREADS_SERVLET
-
This is the intial value for the threads servlet.
SolrClient::DEFAULT_PING_SERVLET
-
This is the intial value for the ping servlet.
SolrClient::DEFAULT_TERMS_SERVLET
-
This is the intial value for the terms servlet used for the TermsComponent
SolrClient::DEFAULT_SYSTEM_SERVLET
-
This is the intial value for the system servlet used to obtain Solr Server information
Table of Contents
|
|