3 * Cache for outputs of the PHP parser
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
21 * @ingroup Cache Parser
25 * @ingroup Cache Parser
32 * Get an instance of this object
36 public static function singleton() {
38 if ( !isset( $instance ) ) {
40 $instance = new ParserCache( $parserMemc );
46 * Setup a cache pathway with a given back-end storage mechanism.
48 * This class use an invalidation strategy that is compatible with
49 * MultiWriteBagOStuff in async replication mode.
51 * @param BagOStuff $memCached
54 protected function __construct( BagOStuff
$memCached ) {
55 $this->mMemc
= $memCached;
59 * @param WikiPage $article
61 * @return mixed|string
63 protected function getParserOutputKey( $article, $hash ) {
66 // idhash seem to mean 'page id' + 'rendering hash' (r3710)
67 $pageid = $article->getId();
68 $renderkey = (int)( $wgRequest->getVal( 'action' ) == 'render' );
70 $key = wfMemcKey( 'pcache', 'idhash', "{$pageid}-{$renderkey}!{$hash}" );
75 * @param WikiPage $page
76 * @return mixed|string
78 protected function getOptionsKey( $page ) {
79 return wfMemcKey( 'pcache', 'idoptions', $page->getId() );
83 * @param WikiPage $page
86 public function deleteOptionsKey( $page ) {
87 $this->mMemc
->delete( $this->getOptionsKey( $page ) );
91 * Provides an E-Tag suitable for the whole page. Note that $article
92 * is just the main wikitext. The E-Tag has to be unique to the whole
93 * page, even if the article itself is the same, so it uses the
94 * complete set of user options. We don't want to use the preference
95 * of a different user on a message just because it wasn't used in
96 * $article. For example give a Chinese interface to a user with
97 * English preferences. That's why we take into account *all* user
98 * options. (r70809 CR)
100 * @param WikiPage $article
101 * @param ParserOptions $popts
104 public function getETag( $article, $popts ) {
105 return 'W/"' . $this->getParserOutputKey( $article,
106 $popts->optionsHash( ParserOptions
::legacyOptions(), $article->getTitle() ) ) .
107 "--" . $article->getTouched() . '"';
111 * Retrieve the ParserOutput from ParserCache, even if it's outdated.
112 * @param WikiPage $article
113 * @param ParserOptions $popts
114 * @return ParserOutput|bool False on failure
116 public function getDirty( $article, $popts ) {
117 $value = $this->get( $article, $popts, true );
118 return is_object( $value ) ?
$value : false;
122 * Generates a key for caching the given article considering
123 * the given parser options.
125 * @note Which parser options influence the cache key
126 * is controlled via ParserOutput::recordOption() or
127 * ParserOptions::addExtraKey().
129 * @note Used by Article to provide a unique id for the PoolCounter.
130 * It would be preferable to have this code in get()
131 * instead of having Article looking in our internals.
133 * @todo Document parameter $useOutdated
135 * @param WikiPage $article
136 * @param ParserOptions $popts
137 * @param bool $useOutdated (default true)
138 * @return bool|mixed|string
140 public function getKey( $article, $popts, $useOutdated = true ) {
141 global $wgCacheEpoch;
143 if ( $popts instanceof User
) {
144 wfWarn( "Use of outdated prototype ParserCache::getKey( &\$article, &\$user )\n" );
145 $popts = ParserOptions
::newFromUser( $popts );
148 // Determine the options which affect this article
150 $optionsKey = $this->mMemc
->get(
151 $this->getOptionsKey( $article ), $casToken, BagOStuff
::READ_VERIFIED
);
152 if ( $optionsKey instanceof CacheTime
) {
153 if ( !$useOutdated && $optionsKey->expired( $article->getTouched() ) ) {
154 wfIncrStats( "pcache.miss.expired" );
155 $cacheTime = $optionsKey->getCacheTime();
156 wfDebugLog( "ParserCache",
157 "Parser options key expired, touched " . $article->getTouched()
158 . ", epoch $wgCacheEpoch, cached $cacheTime\n" );
160 } elseif ( !$useOutdated && $optionsKey->isDifferentRevision( $article->getLatest() ) ) {
161 wfIncrStats( "pcache.miss.revid" );
162 $revId = $article->getLatest();
163 $cachedRevId = $optionsKey->getCacheRevisionId();
164 wfDebugLog( "ParserCache",
165 "ParserOutput key is for an old revision, latest $revId, cached $cachedRevId\n"
170 // $optionsKey->mUsedOptions is set by save() by calling ParserOutput::getUsedOptions()
171 $usedOptions = $optionsKey->mUsedOptions
;
172 wfDebug( "Parser cache options found.\n" );
174 if ( !$useOutdated ) {
177 $usedOptions = ParserOptions
::legacyOptions();
180 return $this->getParserOutputKey(
182 $popts->optionsHash( $usedOptions, $article->getTitle() )
187 * Retrieve the ParserOutput from ParserCache.
188 * false if not found or outdated.
190 * @param WikiPage|Article $article
191 * @param ParserOptions $popts
192 * @param bool $useOutdated (default false)
194 * @return ParserOutput|bool False on failure
196 public function get( $article, $popts, $useOutdated = false ) {
197 global $wgCacheEpoch;
199 $canCache = $article->checkTouched();
201 // It's a redirect now
205 $touched = $article->getTouched();
207 $parserOutputKey = $this->getKey( $article, $popts, $useOutdated );
208 if ( $parserOutputKey === false ) {
209 wfIncrStats( 'pcache.miss.absent' );
214 /** @var ParserOutput $value */
215 $value = $this->mMemc
->get( $parserOutputKey, $casToken, BagOStuff
::READ_VERIFIED
);
217 wfDebug( "ParserOutput cache miss.\n" );
218 wfIncrStats( "pcache.miss.absent" );
222 wfDebug( "ParserOutput cache found.\n" );
224 // The edit section preference may not be the appropiate one in
225 // the ParserOutput, as we are not storing it in the parsercache
226 // key. Force it here. See bug 31445.
227 $value->setEditSectionTokens( $popts->getEditSection() );
229 $wikiPage = method_exists( $article, 'getPage' )
230 ?
$article->getPage()
233 if ( !$useOutdated && $value->expired( $touched ) ) {
234 wfIncrStats( "pcache.miss.expired" );
235 $cacheTime = $value->getCacheTime();
236 wfDebugLog( "ParserCache",
237 "ParserOutput key expired, touched $touched, "
238 . "epoch $wgCacheEpoch, cached $cacheTime\n" );
240 } elseif ( !$useOutdated && $value->isDifferentRevision( $article->getLatest() ) ) {
241 wfIncrStats( "pcache.miss.revid" );
242 $revId = $article->getLatest();
243 $cachedRevId = $value->getCacheRevisionId();
244 wfDebugLog( "ParserCache",
245 "ParserOutput key is for an old revision, latest $revId, cached $cachedRevId\n"
249 Hooks
::run( 'RejectParserCacheValue', [ $value, $wikiPage, $popts ] ) === false
251 wfIncrStats( 'pcache.miss.rejected' );
252 wfDebugLog( "ParserCache",
253 "ParserOutput key valid, but rejected by RejectParserCacheValue hook handler.\n"
257 wfIncrStats( "pcache.hit" );
264 * @param ParserOutput $parserOutput
265 * @param WikiPage $page
266 * @param ParserOptions $popts
267 * @param string $cacheTime Time when the cache was generated
268 * @param int $revId Revision ID that was parsed
270 public function save( $parserOutput, $page, $popts, $cacheTime = null, $revId = null ) {
271 $expire = $parserOutput->getCacheExpiry();
272 if ( $expire > 0 && !$this->mMemc
instanceof EmptyBagOStuff
) {
273 $cacheTime = $cacheTime ?
: wfTimestampNow();
275 $revision = $page->getRevision();
276 $revId = $revision ?
$revision->getId() : null;
279 $optionsKey = new CacheTime
;
280 $optionsKey->mUsedOptions
= $parserOutput->getUsedOptions();
281 $optionsKey->updateCacheExpiry( $expire );
283 $optionsKey->setCacheTime( $cacheTime );
284 $parserOutput->setCacheTime( $cacheTime );
285 $optionsKey->setCacheRevisionId( $revId );
286 $parserOutput->setCacheRevisionId( $revId );
288 $parserOutputKey = $this->getParserOutputKey( $page,
289 $popts->optionsHash( $optionsKey->mUsedOptions
, $page->getTitle() ) );
291 // Save the timestamp so that we don't have to load the revision row on view
292 $parserOutput->setTimestamp( $page->getTimestamp() );
294 $msg = "Saved in parser cache with key $parserOutputKey" .
295 " and timestamp $cacheTime" .
296 " and revision id $revId" .
299 $parserOutput->mText
.= "\n<!-- $msg -->\n";
302 // Save the parser output
303 $this->mMemc
->set( $parserOutputKey, $parserOutput, $expire );
305 // ...and its pointer
306 $this->mMemc
->set( $this->getOptionsKey( $page ), $optionsKey, $expire );
309 'ParserCacheSaveComplete',
310 [ $this, $parserOutput, $page->getTitle(), $popts, $revId ]
312 } elseif ( $expire <= 0 ) {
313 wfDebug( "Parser output was marked as uncacheable and has not been saved.\n" );