MediaWiki REL1_37
|
An utility class to rescore search results by looking for an exact match in the db and add the page found to the first position. More...
Public Member Functions | |
rescore ( $search, $namespaces, $srchres, $limit) | |
Default search backend does proper prefix searching, but custom backends may sort based on other algorithms that may cause the exact title match to not be in the results or be lower down the list. | |
Private Member Functions | |
getRedirectTarget ( $title) | |
Get a redirect's destination from a title. | |
pullFront ( $key, array $array) | |
Returns an array where the element of $array at index $key becomes the first element. | |
redirectTargetsToRedirect (array $titles) | |
An utility class to rescore search results by looking for an exact match in the db and add the page found to the first position.
NOTE: extracted from TitlePrefixSearch
Definition at line 33 of file SearchExactMatchRescorer.php.
|
private |
Get a redirect's destination from a title.
Title | $title | A title to redirect. It may not redirect or even exist |
Definition at line 139 of file SearchExactMatchRescorer.php.
References $title.
Referenced by redirectTargetsToRedirect(), and rescore().
|
private |
Returns an array where the element of $array at index $key becomes the first element.
int | $key | key to pull to the front |
array | $array |
Definition at line 128 of file SearchExactMatchRescorer.php.
Referenced by rescore().
|
private |
string[] | $titles |
Definition at line 105 of file SearchExactMatchRescorer.php.
References $title, and getRedirectTarget().
Referenced by rescore().
SearchExactMatchRescorer::rescore | ( | $search, | |
$namespaces, | |||
$srchres, | |||
$limit | |||
) |
Default search backend does proper prefix searching, but custom backends may sort based on other algorithms that may cause the exact title match to not be in the results or be lower down the list.
string | $search | the query |
int[] | $namespaces | |
string[] | $srchres | results |
int | $limit | the max number of results to return |
Definition at line 44 of file SearchExactMatchRescorer.php.
References $t, getRedirectTarget(), NS_MAIN, pullFront(), and redirectTargetsToRedirect().