blob: 73dca87f9ff480b2f8cab1844c14313ef22a41ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<?php
/**
* Rebuild search index table from scratch. This takes several
* hours, depending on the database size and server configuration.
*
* This is only for MySQL (see bug 9905).
* Postgres is trigger-based and should never need rebuilding.
*
* @file
* @todo document
* @ingroup Maintenance
*/
/** */
require_once( "commandLine.inc" );
require_once( "rebuildtextindex.inc" );
$database = wfGetDB( DB_MASTER );
if( !$database instanceof DatabaseMysql ) {
print "This script is only for MySQL.\n";
exit();
}
$wgTitle = Title::newFromText( "Rebuild text index script" );
dropTextIndex( $database );
rebuildTextIndex( $database );
createTextIndex( $database );
print "Done.\n";
exit();
|