MediaWiki REL1_33
purgeModuleDeps.php
Go to the documentation of this file.
1<?php
26
27require_once __DIR__ . '/Maintenance.php';
28
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription(
38 'Remove all cache entries for ResourceLoader modules from the database' );
39 $this->setBatchSize( 500 );
40 }
41
42 public function execute() {
43 $this->output( "Cleaning up module_deps table...\n" );
44
45 $dbw = $this->getDB( DB_MASTER );
46 $res = $dbw->select( 'module_deps', [ 'md_module', 'md_skin' ], [], __METHOD__ );
47 $rows = iterator_to_array( $res, false );
48
49 $modDeps = $dbw->tableName( 'module_deps' );
50 $i = 1;
51 foreach ( array_chunk( $rows, $this->getBatchSize() ) as $chunk ) {
52 // WHERE ( mod=A AND skin=A ) OR ( mod=A AND skin=B) ..
53 $conds = array_map( function ( stdClass $row ) use ( $dbw ) {
54 return $dbw->makeList( (array)$row, IDatabase::LIST_AND );
55 }, $chunk );
56 $conds = $dbw->makeList( $conds, IDatabase::LIST_OR );
57
58 $this->beginTransaction( $dbw, __METHOD__ );
59 $dbw->query( "DELETE FROM $modDeps WHERE $conds", __METHOD__ );
60 $numRows = $dbw->affectedRows();
61 $this->output( "Batch $i: $numRows rows\n" );
62 $this->commitTransaction( $dbw, __METHOD__ );
63
64 $i++;
65 }
66
67 $this->output( "Done\n" );
68 }
69}
70
71$maintClass = PurgeModuleDeps::class;
72require_once RUN_MAINTENANCE_IF_MAIN;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
setBatchSize( $s=0)
Set the batch size.
Maintenance script to purge the module_deps database cache table.
execute()
Do the actual work.
__construct()
Default constructor.
$res
Definition database.txt:21
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition hooks.txt:2818
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
require_once RUN_MAINTENANCE_IF_MAIN
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$maintClass
const DB_MASTER
Definition defines.php:26