X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FParserCache.php;h=612790a38b2cebb24d8863a377cac4c324214ce3;hb=e7ad7f3d41618b908e806251d9efb64e1e6008d9;hp=74d45f3bb27666ec03bec96fdf72704b0f2ce09f;hpb=727d419e7ebddc0f30db974fe4641ef21dce2aa4;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ParserCache.php b/includes/ParserCache.php index 74d45f3bb2..612790a38b 100644 --- a/includes/ParserCache.php +++ b/includes/ParserCache.php @@ -1,52 +1,127 @@ mMemc =& $memCached; + } -class ParserCache -{ function getKey( &$article, &$user ) { - global $wgDBname; + global $wgDBname, $action; $hash = $user->getPageRenderingHash(); + if( !$article->mTitle->userCanEdit() ) { + // section edit links are suppressed even if the user has them on + $edit = '!edit=0'; + } else { + $edit = ''; + } $pageid = intval( $article->getID() ); - $key = "$wgDBname:pcache:idhash:$pageid-$hash"; + $renderkey = (int)($action == 'render'); + $key = "$wgDBname:pcache:idhash:$pageid-$renderkey!$hash$edit"; return $key; } + function getETag( &$article, &$user ) { + return 'W/"' . $this->getKey($article, $user) . "--" . $article->mTouched. '"'; + } + function get( &$article, &$user ) { - global $wgMemc; - $fname = "ParserCache::get"; + global $wgCacheEpoch; + $fname = 'ParserCache::get'; wfProfileIn( $fname ); $hash = $user->getPageRenderingHash(); $pageid = intval( $article->getID() ); $key = $this->getKey( $article, $user ); - $value = $wgMemc->get( $key ); - if ( $value ) { + + wfDebug( "Trying parser cache $key\n" ); + $value = $this->mMemc->get( $key ); + if ( is_object( $value ) ) { + wfDebug( "Found.\n" ); # Delete if article has changed since the cache was made - if ( $value->getTouched() != $article->getTouched() ) { - $wgMemc->delete( $key ); + $canCache = $article->checkTouched(); + $cacheTime = $value->getCacheTime(); + $touched = $article->mTouched; + if ( !$canCache || $value->expired( $touched ) ) { + if ( !$canCache ) { + wfIncrStats( "pcache_miss_invalid" ); + wfDebug( "Invalid cached redirect, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" ); + } else { + wfIncrStats( "pcache_miss_expired" ); + wfDebug( "Key expired, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" ); + } + $this->mMemc->delete( $key ); $value = false; + } else { + if ( isset( $value->mTimestamp ) ) { + $article->mTimestamp = $value->mTimestamp; + } + wfIncrStats( "pcache_hit" ); } } else { + wfDebug( "Parser cache miss.\n" ); + wfIncrStats( "pcache_miss_absent" ); $value = false; } wfProfileOut( $fname ); return $value; } - + function save( $parserOutput, &$article, &$user ){ - global $wgMemc; + global $wgParserCacheExpireTime; $key = $this->getKey( $article, $user ); - $parserOutput->setTouched( $article->getTouched() ); - if( $parserOutput->containsOldMagic() ){ - $expire = 3600; # 1 hour + + if( $parserOutput->getCacheTime() != -1 ) { + + $now = wfTimestampNow(); + $parserOutput->setCacheTime( $now ); + + // Save the timestamp so that we don't have to load the revision row on view + $parserOutput->mTimestamp = $article->getTimestamp(); + + $parserOutput->mText .= "\n\n"; + wfDebug( "Saved in parser cache with key $key and timestamp $now\n" ); + + if( $parserOutput->containsOldMagic() ){ + $expire = 3600; # 1 hour + } else { + $expire = $wgParserCacheExpireTime; + } + $this->mMemc->set( $key, $parserOutput, $expire ); + } else { - $expire = 7*86400; # 7 days + wfDebug( "Parser output was marked as uncacheable and has not been saved.\n" ); } - - $wgMemc->set( $key, $parserOutput, $expire ); + } } - ?>