2004-02-26 13:37:26 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
*
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-02-26 13:37:26 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
*
|
2004-09-03 23:00:01 +00:00
|
|
|
* @package MediaWiki
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-11-22 01:16:44 +00:00
|
|
|
class ParserCache {
|
|
|
|
|
/**
|
|
|
|
|
* Setup a cache pathway with a given back-end storage mechanism.
|
|
|
|
|
* May be a memcached client or a BagOStuff derivative.
|
|
|
|
|
*
|
|
|
|
|
* @param object $memCached
|
|
|
|
|
*/
|
|
|
|
|
function ParserCache( &$memCached ) {
|
|
|
|
|
$this->mMemc =& $memCached;
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-27 15:24:04 +00:00
|
|
|
function getKey( &$article, &$user ) {
|
|
|
|
|
global $wgDBname;
|
2004-02-26 13:37:26 +00:00
|
|
|
$hash = $user->getPageRenderingHash();
|
2004-05-27 15:24:04 +00:00
|
|
|
$pageid = intval( $article->getID() );
|
|
|
|
|
$key = "$wgDBname:pcache:idhash:$pageid-$hash";
|
|
|
|
|
return $key;
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
2004-05-29 11:39:29 +00:00
|
|
|
|
2004-05-27 15:24:04 +00:00
|
|
|
function get( &$article, &$user ) {
|
2004-11-22 01:16:44 +00:00
|
|
|
global $wgCacheEpoch;
|
2004-08-22 17:24:50 +00:00
|
|
|
$fname = 'ParserCache::get';
|
2004-05-28 05:45:13 +00:00
|
|
|
wfProfileIn( $fname );
|
|
|
|
|
|
2004-02-26 13:37:26 +00:00
|
|
|
$hash = $user->getPageRenderingHash();
|
|
|
|
|
$pageid = intval( $article->getID() );
|
2004-05-27 15:24:04 +00:00
|
|
|
$key = $this->getKey( $article, $user );
|
2005-01-04 12:54:07 +00:00
|
|
|
|
2004-05-30 08:18:40 +00:00
|
|
|
wfDebug( "Trying parser cache $key\n" );
|
2004-11-22 01:16:44 +00:00
|
|
|
$value = $this->mMemc->get( $key );
|
2004-10-23 08:23:13 +00:00
|
|
|
if ( is_object( $value ) ) {
|
2004-05-30 08:18:40 +00:00
|
|
|
wfDebug( "Found.\n" );
|
2004-05-27 15:24:04 +00:00
|
|
|
# Delete if article has changed since the cache was made
|
2004-06-04 10:40:44 +00:00
|
|
|
$canCache = $article->checkTouched();
|
2004-05-30 08:18:40 +00:00
|
|
|
$cacheTime = $value->getCacheTime();
|
2004-06-04 12:31:32 +00:00
|
|
|
$touched = $article->mTouched;
|
2004-11-25 22:02:30 +00:00
|
|
|
if ( !$canCache || $value->expired( $touched ) ) {
|
2004-06-04 10:40:44 +00:00
|
|
|
if ( !$canCache ) {
|
2005-01-04 12:54:07 +00:00
|
|
|
$this->incrStats( "pcache_miss_invalid" );
|
2004-06-04 10:40:44 +00:00
|
|
|
wfDebug( "Invalid cached redirect, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
|
|
|
|
|
} else {
|
2005-01-04 12:54:07 +00:00
|
|
|
$this->incrStats( "pcache_miss_expired" );
|
2004-06-04 10:40:44 +00:00
|
|
|
wfDebug( "Key expired, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
|
|
|
|
|
}
|
2004-11-22 01:16:44 +00:00
|
|
|
$this->mMemc->delete( $key );
|
2004-05-27 15:24:04 +00:00
|
|
|
$value = false;
|
2005-01-04 12:54:07 +00:00
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$this->incrStats( "pcache_hit" );
|
2004-05-27 15:24:04 +00:00
|
|
|
}
|
2004-02-26 13:37:26 +00:00
|
|
|
} else {
|
2004-10-23 10:22:38 +00:00
|
|
|
wfDebug( "Parser cache miss.\n" );
|
2005-01-04 12:54:07 +00:00
|
|
|
$this->incrStats( "pcache_miss_absent" );
|
2004-05-27 15:24:04 +00:00
|
|
|
$value = false;
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
2004-05-28 05:45:13 +00:00
|
|
|
|
|
|
|
|
wfProfileOut( $fname );
|
2004-05-27 15:24:04 +00:00
|
|
|
return $value;
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
|
|
|
|
|
2004-05-27 15:24:04 +00:00
|
|
|
function save( $parserOutput, &$article, &$user ){
|
|
|
|
|
$key = $this->getKey( $article, $user );
|
2004-05-30 07:31:26 +00:00
|
|
|
$now = wfTimestampNow();
|
|
|
|
|
$parserOutput->setCacheTime( $now );
|
|
|
|
|
$parserOutput->mText .= "\n<!-- Saved in parser cache with key $key and timestamp $now -->\n";
|
2004-11-22 01:16:44 +00:00
|
|
|
wfDebug( "Saved in parser cache with key $key and timestamp $now\n" );
|
2004-05-29 12:36:05 +00:00
|
|
|
|
2004-05-27 15:24:04 +00:00
|
|
|
if( $parserOutput->containsOldMagic() ){
|
|
|
|
|
$expire = 3600; # 1 hour
|
2004-02-26 13:37:26 +00:00
|
|
|
} else {
|
2004-05-30 07:31:26 +00:00
|
|
|
$expire = 86400; # 1 day
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
2004-11-22 01:16:44 +00:00
|
|
|
$this->mMemc->set( $key, $parserOutput, $expire );
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
2005-01-04 12:54:07 +00:00
|
|
|
|
|
|
|
|
function incrStats( $key ) {
|
|
|
|
|
global $wgDBname, $wgMemc;
|
|
|
|
|
$key = "$wgDBname:stats:$key";
|
|
|
|
|
if ( is_null( $wgMemc->incr( $key ) ) ) {
|
|
|
|
|
$wgMemc->add( $key, 1 );
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|