Solr
PHP Manual

La clase SolrInputDocument

(No hay información de versión disponible, podría estar únicamente en SVN)

Introducción

Esta clase representa un documento Solr que está a punto de ser enviado al índice de Solr.

Sinopsis de la Clase

final SolrInputDocument {
/* Constantes */
const integer SORT_DEFAULT = 1 ;
const integer SORT_ASC = 1 ;
const integer SORT_DESC = 2 ;
const integer SORT_FIELD_NAME = 1 ;
const integer SORT_FIELD_VALUE_COUNT = 2 ;
const integer SORT_FIELD_BOOST_VALUE = 4 ;
/* Métodos */
public bool addField ( string $fieldName , string $fieldValue [, float $fieldBoostValue = 0.0 ] )
public bool clear ( void )
public void __clone ( void )
public __construct ( void )
public bool deleteField ( string $fieldName )
public void __destruct ( void )
public bool fieldExists ( string $fieldName )
public float getBoost ( void )
public SolrDocumentField getField ( string $fieldName )
public float getFieldBoost ( string $fieldName )
public int getFieldCount ( void )
public array getFieldNames ( void )
public bool merge ( SolrInputDocument $sourceDoc [, bool $overwrite = true ] )
public bool reset ( void )
public bool setBoost ( float $documentBoostValue )
public bool setFieldBoost ( string $fieldName , float $fieldBoostValue )
public bool sort ( int $sortOrderBy [, int $sortDirection = SolrInputDocument::SORT_ASC ] )
public array toArray ( void )
}

Constantes predefinidas

Constantes de la Clase SolrInputDocument

SolrInputDocument::SORT_DEFAULT

Ordena los campos de forma ascendente.

SolrInputDocument::SORT_ASC

Ordena los campos de forma ascendente.

SolrInputDocument::SORT_DESC

Ordena los campos de forma descendente

SolrInputDocument::SORT_FIELD_NAME

Ordena los campos por nombre

SolrInputDocument::SORT_FIELD_VALUE_COUNT

Ordena los campos según el número de valores.

SolrInputDocument::SORT_FIELD_BOOST_VALUE

Ordena los campos según el valor de boost.

Tabla de contenidos


Solr
PHP Manual