3 * Rebuild search index table from scratch. This takes several
4 * hours, depending on the database size and server configuration.
6 * This is only for MySQL (see bug 9905). For postgres we can probably
7 * use SearchPostgres::update($pageid);
11 * @ingroup Maintenance
15 require_once( "commandLine.inc" );
16 require_once( "rebuildtextindex.inc" );
18 $database = wfGetDB( DB_MASTER
);
19 if( !$database instanceof DatabaseMysql
) {
20 print "This script is only for MySQL.\n";
24 $wgTitle = Title
::newFromText( "Rebuild text index script" );
26 dropTextIndex( $database );
27 rebuildTextIndex( $database );
28 createTextIndex( $database );