3 * Base code for update jobs that put some secondary data extracted
4 * from article content into the database.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
23 use MediaWiki\MediaWikiServices
;
27 * Invalidate the cache of a list of pages from a single namespace.
28 * This is intended for use by subclasses.
30 * @param IDatabase $dbw
31 * @param int $namespace Namespace number
32 * @param array $dbkeys
34 public static function invalidatePages( IDatabase
$dbw, $namespace, array $dbkeys ) {
35 if ( $dbkeys === [] ) {
39 $dbw->onTransactionIdle(
40 function () use ( $dbw, $namespace, $dbkeys ) {
41 $services = MediaWikiServices
::getInstance();
42 $lbFactory = $services->getDBLoadBalancerFactory();
43 // Determine which pages need to be updated.
44 // This is necessary to prevent the job queue from smashing the DB with
45 // large numbers of concurrent invalidations of the same page.
46 $now = $dbw->timestamp();
47 $ids = $dbw->selectFieldValues(
51 'page_namespace' => $namespace,
52 'page_title' => $dbkeys,
53 'page_touched < ' . $dbw->addQuotes( $now )
62 $batchSize = $services->getMainConfig()->get( 'UpdateRowsPerQuery' );
63 $ticket = $lbFactory->getEmptyTransactionTicket( __METHOD__
);
64 foreach ( array_chunk( $ids, $batchSize ) as $idBatch ) {
67 [ 'page_touched' => $now ],
69 'page_id' => $idBatch,
70 'page_touched < ' . $dbw->addQuotes( $now ) // handle races
74 $lbFactory->commitAndWaitForReplication( __METHOD__
, $ticket );