|
MediaWiki
REL1_23
|
Search engine hook base class for Postgres. More...


Public Member Functions | |
| parseQuery ($term) | |
| Transform the user's search string into a better form for tsearch2 Returns an SQL fragment consisting of quoted text to search for. | |
| searchQuery ($term, $fulltext, $colname) | |
| Construct the full SQL query to do the search. | |
| searchText ($term) | |
| Perform a full text search query and return a result set. | |
| searchTitle ($term) | |
| Perform a full text search query via tsearch2 and return a result set. | |
| update ($pageid, $title, $text) | |
| Create or update the search index record for the given page. | |
| updateTitle ($id, $title) | |
| Update a search index record's title only. | |
Search engine hook base class for Postgres.
Definition at line 31 of file SearchPostgres.php.
| SearchPostgres::parseQuery | ( | $ | term | ) |
Transform the user's search string into a better form for tsearch2 Returns an SQL fragment consisting of quoted text to search for.
| $term | string |
Definition at line 71 of file SearchPostgres.php.
References $term, array(), as, and wfDebug().
Referenced by searchQuery().
| SearchPostgres::searchQuery | ( | $ | term, |
| $ | fulltext, | ||
| $ | colname | ||
| ) |
Construct the full SQL query to do the search.
| $term | String |
| $fulltext | String |
| $colname |
Definition at line 138 of file SearchPostgres.php.
References SearchEngine\$namespaces, $query, $res, $term, are, array(), as, e, namespaces, only, parseQuery(), used, and wfDebug().
Referenced by searchText(), and searchTitle().
| SearchPostgres::searchText | ( | $ | term | ) |
Perform a full text search query and return a result set.
If title searches are not supported or disabled, return null. STUB
| string | $term | raw search term |
Reimplemented from SearchEngine.
Definition at line 52 of file SearchPostgres.php.
References $term, and searchQuery().
| SearchPostgres::searchTitle | ( | $ | term | ) |
Perform a full text search query via tsearch2 and return a result set.
Currently searches a page's current title (page.page_title) and latest revision article text (pagecontent.old_text)
| string | $term | raw search term |
Reimplemented from SearchEngine.
Definition at line 40 of file SearchPostgres.php.
References $term, and searchQuery().
| SearchPostgres::update | ( | $ | id, |
| $ | title, | ||
| $ | text | ||
| ) |
Create or update the search index record for the given page.
Title and text should be pre-processed. STUB
| $id | Integer |
| $title | String |
| $text | String |
Reimplemented from SearchEngine.
Definition at line 192 of file SearchPostgres.php.
| SearchPostgres::updateTitle | ( | $ | id, |
| $ | title | ||
| ) |
Update a search index record's title only.
Title should be pre-processed. STUB
| $id | Integer |
| $title | String |
Reimplemented from SearchEngine.
Definition at line 201 of file SearchPostgres.php.