MediaWiki REL1_33
WANCacheReapUpdate.php
Go to the documentation of this file.
1<?php
2
5use Psr\Log\LoggerInterface;
7
28 private $db;
30 private $logger;
31
36 public function __construct( IDatabase $db, LoggerInterface $logger ) {
37 $this->db = $db;
38 $this->logger = $logger;
39 }
40
41 function doUpdate() {
42 $reaper = new WANObjectCacheReaper(
43 MediaWikiServices::getInstance()->getMainWANObjectCache(),
44 ObjectCache::getLocalClusterInstance(),
45 [ $this, 'getTitleChangeEvents' ],
46 [ $this, 'getEventAffectedKeys' ],
47 [
48 'channel' => 'table:recentchanges:' . $this->db->getDomainID(),
49 'logger' => $this->logger
50 ]
51 );
52
53 $reaper->invoke( 100 );
54 }
55
65 public function getTitleChangeEvents( $start, $id, $end, $limit ) {
66 $db = $this->db;
67 $encStart = $db->addQuotes( $db->timestamp( $start ) );
68 $encEnd = $db->addQuotes( $db->timestamp( $end ) );
69 $id = (int)$id; // cast NULL => 0 since rc_id is an integer
70
71 $res = $db->select(
72 'recentchanges',
73 [ 'rc_namespace', 'rc_title', 'rc_timestamp', 'rc_id' ],
74 [
75 $db->makeList( [
76 "rc_timestamp > $encStart",
77 "rc_timestamp = $encStart AND rc_id > " . $db->addQuotes( $id )
78 ], LIST_OR ),
79 "rc_timestamp < $encEnd"
80 ],
81 __METHOD__,
82 [ 'ORDER BY' => 'rc_timestamp ASC, rc_id ASC', 'LIMIT' => $limit ]
83 );
84
85 $events = [];
86 foreach ( $res as $row ) {
87 $events[] = [
88 'id' => (int)$row->rc_id,
89 'pos' => (int)wfTimestamp( TS_UNIX, $row->rc_timestamp ),
90 'item' => new TitleValue( (int)$row->rc_namespace, $row->rc_title )
91 ];
92 }
93
94 return $events;
95 }
96
107 $entities = [];
108
109 // You can't create a WikiPage for special pages (-1) or other virtual
110 // namespaces, but special pages do appear in RC sometimes, e.g. for logs
111 // of AbuseFilter filter changes.
112 if ( $t->getNamespace() >= 0 ) {
113 $entities[] = WikiPage::factory( Title::newFromLinkTarget( $t ) );
114 }
115
116 if ( $t->inNamespace( NS_FILE ) ) {
117 $entities[] = wfLocalFile( $t->getText() );
118 }
119 if ( $t->inNamespace( NS_USER ) ) {
120 $entities[] = User::newFromName( $t->getText(), false );
121 }
122
123 $keys = [];
124 foreach ( $entities as $entity ) {
125 if ( $entity ) {
126 $keys = array_merge( $keys, $entity->getMutableCacheKeys( $cache ) );
127 }
128 }
129 if ( $keys ) {
130 $this->logger->debug( __CLASS__ . ': got key(s) ' . implode( ', ', $keys ) );
131 }
132
133 return $keys;
134 }
135}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Represents a page (or page fragment) title within MediaWiki.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:585
Class for fixing stale WANObjectCache keys using a purge event source.
getEventAffectedKeys(WANObjectCache $cache, LinkTarget $t)
Gets a list of important cache keys associated with a title.
LoggerInterface $logger
doUpdate()
Perform the actual work.
getTitleChangeEvents( $start, $id, $end, $limit)
__construct(IDatabase $db, LoggerInterface $logger)
Class for scanning through chronological, log-structured data or change logs and locally purging cach...
Multi-datacenter aware caching interface.
$res
Definition database.txt:21
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_USER
Definition Defines.php:75
const NS_FILE
Definition Defines.php:79
const LIST_OR
Definition Defines.php:55
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
Interface that deferrable updates should implement.
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
select( $table, $vars, $conds='', $fname=__METHOD__, $options=[], $join_conds=[])
Execute a SELECT query constructed using the various parameters provided.
addQuotes( $s)
Adds quotes and backslashes.
timestamp( $ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
makeList( $a, $mode=self::LIST_COMMA)
Makes an encoded list of strings from an array.
$cache
Definition mcc.php:33