MediaWiki REL1_35
|
Basic infrastructure of the field definition. More...
Public Member Functions | ||||
__construct ( $name, $type) | ||||
checkFlag ( $flag) | ||||
Check if flag is set. | ||||
getEngineHints (SearchEngine $engine) | ||||
A list of search engine hints for this field.Hints are usually specific to a search engine implementation and allow to fine control how the search engine will handle this particular field.For example some search engine permits some optimizations at index time by ignoring an update if the updated value does not change by more than X% on a numeric value.
| ||||
getIndexType () | ||||
Get index type. | ||||
getMapping (SearchEngine $engine) | ||||
getName () | ||||
Get field name. | ||||
getSubfields () | ||||
Get subfields. | ||||
merge (SearchIndexField $that) | ||||
Merge two field definitions if possible. | ||||
setFlag ( $flag, $unset=false) | ||||
Set global flag for this field. | ||||
setMergeCallback ( $callback) | ||||
Set field-specific merge strategy. | ||||
setSubfields (array $subfields) | ||||
Set subfields. | ||||
Protected Attributes | |
int | $flags = 0 |
Bit flags for the field. | |
string | $name |
Name of the field. | |
SearchIndexFieldDefinition[] | $subfields = [] |
Subfields. | |
string | $type |
Type of the field, one of the constants above. | |
Private Attributes | |
callable | $mergeCallback |
Additional Inherited Members | |
Public Attributes inherited from SearchIndexField | |
const | FLAG_CASEFOLD = 1 |
Generic field flags. | |
const | FLAG_NO_HIGHLIGHT = 4 |
This field does not need highlight handling. | |
const | FLAG_NO_INDEX = 8 |
Do not index this field, just store it. | |
const | FLAG_SCORING = 2 |
This field contains secondary information, which is already present in other fields, but can be used for scoring. | |
const | INDEX_TYPE_BOOL = 'bool' |
const | INDEX_TYPE_DATETIME = 'datetime' |
const | INDEX_TYPE_INTEGER = 'integer' |
const | INDEX_TYPE_KEYWORD = 'keyword' |
KEYWORD fields are indexed without any processing, so are appropriate for e.g. | |
const | INDEX_TYPE_NESTED = 'nested' |
const | INDEX_TYPE_NUMBER = 'number' |
const | INDEX_TYPE_SHORT_TEXT = 'short_text' |
SHORT_TEXT is meant to be used with short text made of mostly ascii technical information. | |
const | INDEX_TYPE_TEXT = 'text' |
TEXT fields are suitable for natural language and may be subject to analysis such as stemming. | |
Basic infrastructure of the field definition.
Specific engines should extend this class and at at least, override the getMapping method, but can reuse other parts.
Stable to extend
Definition at line 12 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::__construct | ( | $name, | |
$type | |||
) |
string | $name | Field name |
string | $type | Index type |
Definition at line 50 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::checkFlag | ( | $flag | ) |
Check if flag is set.
Stable to override
int | $flag |
Implements SearchIndexField.
Definition at line 95 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::getEngineHints | ( | SearchEngine | $engine | ) |
A list of search engine hints for this field.Hints are usually specific to a search engine implementation and allow to fine control how the search engine will handle this particular field.For example some search engine permits some optimizations at index time by ignoring an update if the updated value does not change by more than X% on a numeric value.
SearchEngine | $engine |
Implements SearchIndexField.
Definition at line 155 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::getIndexType | ( | ) |
Get index type.
Definition at line 67 of file SearchIndexFieldDefinition.php.
References $type.
|
abstract |
SearchEngine | $engine |
Implements SearchIndexField.
Reimplemented in DummySearchIndexFieldDefinition.
SearchIndexFieldDefinition::getName | ( | ) |
Get field name.
Definition at line 59 of file SearchIndexFieldDefinition.php.
References $name.
SearchIndexFieldDefinition::getSubfields | ( | ) |
Get subfields.
Definition at line 123 of file SearchIndexFieldDefinition.php.
References $subfields.
SearchIndexFieldDefinition::merge | ( | SearchIndexField | $that | ) |
Merge two field definitions if possible.
Stable to override
SearchIndexField | $that |
Implements SearchIndexField.
Definition at line 106 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::setFlag | ( | $flag, | |
$unset = false |
|||
) |
Set global flag for this field.
Stable to override
int | $flag | Bit flag to set/unset |
bool | $unset | True if flag should be unset, false by default |
Implements SearchIndexField.
Definition at line 79 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::setMergeCallback | ( | $callback | ) |
Set field-specific merge strategy.
callable | $callback |
Definition at line 148 of file SearchIndexFieldDefinition.php.
SearchIndexFieldDefinition::setSubfields | ( | array | $subfields | ) |
Set subfields.
SearchIndexFieldDefinition[] | $subfields |
Definition at line 132 of file SearchIndexFieldDefinition.php.
References $subfields.
|
protected |
Bit flags for the field.
Definition at line 33 of file SearchIndexFieldDefinition.php.
Referenced by DummySearchIndexFieldDefinition\getMapping().
|
private |
Definition at line 44 of file SearchIndexFieldDefinition.php.
|
protected |
Name of the field.
Definition at line 19 of file SearchIndexFieldDefinition.php.
Referenced by __construct(), DummySearchIndexFieldDefinition\getMapping(), and getName().
|
protected |
Subfields.
Definition at line 39 of file SearchIndexFieldDefinition.php.
Referenced by getSubfields(), and setSubfields().
|
protected |
Type of the field, one of the constants above.
Definition at line 26 of file SearchIndexFieldDefinition.php.
Referenced by __construct(), getIndexType(), and DummySearchIndexFieldDefinition\getMapping().