3 * HTML cache invalidation of all pages linking to a given title.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 use MediaWiki\MediaWikiServices
;
28 * Job to purge the cache for all pages that link to or use another page or file
30 * This job comes in a few variants:
31 * - a) Recursive jobs to purge caches for backlink pages for a given title.
32 * These jobs have (recursive:true,table:<table>) set.
33 * - b) Jobs to purge caches for a set of titles (the job title is ignored).
34 * These jobs have (pages:(<page ID>:(<namespace>,<title>),...) set.
38 class HTMLCacheUpdateJob
extends Job
{
39 function __construct( Title
$title, array $params ) {
40 parent
::__construct( 'htmlCacheUpdate', $title, $params );
41 // Base backlink purge jobs can be de-duplicated
42 $this->removeDuplicates
= ( !isset( $params['range'] ) && !isset( $params['pages'] ) );
46 * @param Title $title Title to purge backlink pages from
47 * @param string $table Backlink table name
48 * @return HTMLCacheUpdateJob
50 public static function newForBacklinks( Title
$title, $table ) {
56 ] + Job
::newRootJobParams( // "overall" refresh links job info
57 "htmlCacheUpdate:{$table}:{$title->getPrefixedText()}"
63 global $wgUpdateRowsPerJob, $wgUpdateRowsPerQuery;
65 if ( isset( $this->params
['table'] ) && !isset( $this->params
['pages'] ) ) {
66 $this->params
['recursive'] = true; // b/c; base job
69 // Job to purge all (or a range of) backlink pages for a page
70 if ( !empty( $this->params
['recursive'] ) ) {
71 // Convert this into no more than $wgUpdateRowsPerJob HTMLCacheUpdateJob per-title
72 // jobs and possibly a recursive HTMLCacheUpdateJob job for the rest of the backlinks
73 $jobs = BacklinkJobUtils
::partitionBacklinkJob(
76 $wgUpdateRowsPerQuery, // jobs-per-title
77 // Carry over information for de-duplication
78 [ 'params' => $this->getRootJobParams() ]
80 JobQueueGroup
::singleton()->push( $jobs );
81 // Job to purge pages for a set of titles
82 } elseif ( isset( $this->params
['pages'] ) ) {
83 $this->invalidateTitles( $this->params
['pages'] );
84 // Job to update a single title
87 $this->invalidateTitles( [
88 $t->getArticleID() => [ $t->getNamespace(), $t->getDBkey() ]
96 * @param array $pages Map of (page ID => (namespace, DB key)) entries
98 protected function invalidateTitles( array $pages ) {
99 global $wgUpdateRowsPerQuery, $wgUseFileCache;
101 // Get all page IDs in this query into an array
102 $pageIds = array_keys( $pages );
107 // Bump page_touched to the current timestamp. This used to use the root job timestamp
108 // (e.g. template/file edit time), which was a bit more efficient when template edits are
109 // rare and don't effect the same pages much. However, this way allows for better
110 // de-duplication, which is much more useful for wikis with high edit rates. Note that
111 // RefreshLinksJob, which is enqueued alongside HTMLCacheUpdateJob, saves the parser output
112 // since it has to parse anyway. We assume that vast majority of the cache jobs finish
113 // before the link jobs, so using the current timestamp instead of the root timestamp is
114 // not expected to invalidate these cache entries too often.
115 $touchTimestamp = wfTimestampNow();
117 $dbw = wfGetDB( DB_MASTER
);
118 $factory = MediaWikiServices
::getInstance()->getDBLoadBalancerFactory();
119 $ticket = $factory->getEmptyTransactionTicket( __METHOD__
);
120 // Update page_touched (skipping pages already touched since the root job).
121 // Check $wgUpdateRowsPerQuery for sanity; batch jobs are sized by that already.
122 foreach ( array_chunk( $pageIds, $wgUpdateRowsPerQuery ) as $batch ) {
123 $factory->commitAndWaitForReplication( __METHOD__
, $ticket );
125 $dbw->update( 'page',
126 [ 'page_touched' => $dbw->timestamp( $touchTimestamp ) ],
127 [ 'page_id' => $batch,
128 // don't invalidated pages that were already invalidated
129 "page_touched < " . $dbw->addQuotes( $dbw->timestamp( $touchTimestamp ) )
134 // Get the list of affected pages (races only mean something else did the purge)
135 $titleArray = TitleArray
::newFromResult( $dbw->select(
137 [ 'page_namespace', 'page_title' ],
138 [ 'page_id' => $pageIds, 'page_touched' => $dbw->timestamp( $touchTimestamp ) ],
143 $u = CdnCacheUpdate
::newFromTitles( $titleArray );
147 if ( $wgUseFileCache ) {
148 foreach ( $titleArray as $title ) {
149 HTMLFileCache
::clearFileCache( $title );
154 public function workItemCount() {
155 return isset( $this->params
['pages'] ) ?
count( $this->params
['pages'] ) : 1;