SolrDocument 类

(PECL solr >= 0.9.2)

简介

表示从查询响应中检索到的 Solr 文档。

类概要

final class SolrDocument implements ArrayAccess, Iterator, Serializable {
/* 常量 */
const int SORT_DEFAULT = 1;
const int SORT_ASC = 1;
const int SORT_DESC = 2;
const int SORT_FIELD_NAME = 1;
/* 方法 */
public __construct()
public addField(string $fieldName, string $fieldValue): bool
public clear(): bool
public __clone(): void
public deleteField(string $fieldName): bool
public fieldExists(string $fieldName): bool
public __get(string $fieldName): SolrDocumentField
public getField(string $fieldName): SolrDocumentField
public getFieldCount(): int
public __isset(string $fieldName): bool
public key(): string
public merge(SolrDocument $sourceDoc, bool $overwrite = true): bool
public next(): void
public offsetExists(string $fieldName): bool
public offsetGet(string $fieldName): SolrDocumentField
public offsetSet(string $fieldName, string $fieldValue): void
public offsetUnset(string $fieldName): void
public reset(): bool
public rewind(): void
public serialize(): string
public __set(string $fieldName, string $fieldValue): bool
public sort(int $sortOrderBy, int $sortDirection = SolrDocument::SORT_ASC): bool
public toArray(): array
public unserialize(string $serialized): void
public __unset(string $fieldName): bool
public valid(): bool
public __destruct()
}

预定义常量

SolrDocument::SORT_DEFAULT

文档中排序字段的默认模式。

SolrDocument::SORT_ASC

按升序排序字段。

SolrDocument::SORT_DESC

按降序排序字段。

SolrDocument::SORT_FIELD_NAME

按字段名称排序字段。

SolrDocument::SORT_FIELD_VALUE_COUNT

按每个字段的值数量排序字段。

SolrDocument::SORT_FIELD_BOOST_VALUE

根据字段的提升值对字段进行排序。

目录

添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top