#9896 Documentation for wgSquidServers. Patch by Loic Dachary.
[mediawiki.git] / maintenance / rebuildtextindex.php
blob6f31cbb6b53c1c356282c5a655552579f3f855db
1 <?php
2 /**
3 * Rebuild search index table from scratch. This takes several
4 * hours, depending on the database size and server configuration.
6 * @todo document
7 * @addtogroup Maintenance
8 */
10 /** */
11 require_once( "commandLine.inc" );
12 require_once( "rebuildtextindex.inc" );
13 $wgTitle = Title::newFromText( "Rebuild text index script" );
15 $database = Database::newFromParams( $wgDBserver, $wgDBadminuser, $wgDBadminpassword, $wgDBname );
17 dropTextIndex( $database );
18 rebuildTextIndex( $database );
19 createTextIndex( $database );
21 print "Done.\n";
22 exit();