This patch introduces a way for SearchEngine implementations to expose specific search profiles useful to fine-tune the various behaviors related to search. A SearchEngine can expose a list of profiles by overriding SearchEngine::getProfiles( $profileType ), profileType stands for the type of profile being customized. Two types are added in this patch: - completion: exposed by ApiQueryPrefixSearch and ApiOpenSearch to control the behavior of the algorithm behind "search as you type" suggestions. - fulltext query independent profiles: exposed by ApiQuerySearch to customize query indpendent ranking profiles (e.g. boost by templates/incoming links/popularity/...) This patch allows api consumers that might have been confused by fuzzy suggestions to switch to stricter profiles and to officialize the behavior behind the hidden param cirrusUseCompletionSuggester. Or to control the fulltext ranking behaviors like cirrusBoostLinks=(yes|no). The list of profiles can be discovered by using ApiSandbox/ApiHelp and is totally controlled by search engine implementations. Bug: T132477 Change-Id: I66be724d8975976c98c91badbf421f237e014f89 |
||
|---|---|---|
| .. | ||
| SearchDatabase.php | ||
| SearchEngine.php | ||
| SearchEngineConfig.php | ||
| SearchEngineFactory.php | ||
| SearchExactMatchRescorer.php | ||
| SearchHighlighter.php | ||
| SearchMssql.php | ||
| SearchMySQL.php | ||
| SearchNearMatcher.php | ||
| SearchNearMatchResultSet.php | ||
| SearchOracle.php | ||
| SearchPostgres.php | ||
| SearchResult.php | ||
| SearchResultSet.php | ||
| SearchSqlite.php | ||
| SearchSuggestion.php | ||
| SearchSuggestionSet.php | ||
| SqlSearchResultSet.php | ||