SolrInputDocument 类

(PECL solr >= 0.9.2)

介绍

此类表示即将提交到 Solr 索引的 Solr 文档。

类概要

final class SolrInputDocument {
/* 常量 */
const int SORT_DEFAULT = 1;
const int SORT_ASC = 1;
const int SORT_DESC = 2;
const int SORT_FIELD_NAME = 1;
/* 方法 */
public __construct()
public addChildDocuments(array &$docs): void
public addField(string $fieldName, string $fieldValue, float $fieldBoostValue = 0.0): bool
public clear(): bool
public __clone(): void
public deleteField(string $fieldName): bool
public fieldExists(string $fieldName): bool
public getBoost(): float
public getField(string $fieldName): SolrDocumentField
public getFieldBoost(string $fieldName): float
public merge(SolrInputDocument $sourceDoc, bool $overwrite = true): bool
public reset(): bool
public setBoost(float $documentBoostValue): bool
public setFieldBoost(string $fieldName, float $fieldBoostValue): bool
public sort(int $sortOrderBy, int $sortDirection = SolrInputDocument::SORT_ASC): bool
public toArray(): array
public __destruct()
}

预定义常量

SolrInputDocument 类常量

SolrInputDocument::SORT_DEFAULT

按升序排序字段。

SolrInputDocument::SORT_ASC

按升序排序字段。

SolrInputDocument::SORT_DESC

按降序排序字段。

SolrInputDocument::SORT_FIELD_NAME

按名称排序字段

SolrInputDocument::SORT_FIELD_VALUE_COUNT

按值数量排序字段。

SolrInputDocument::SORT_FIELD_BOOST_VALUE

按提升值排序字段。

目录

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top