wiki.techinc.nl/includes/ParserCache.php

74 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
*
* @package MediaWiki
*/
/**
*
* @package MediaWiki
*/
class ParserCache
{
2004-05-27 15:24:04 +00:00
function getKey( &$article, &$user ) {
global $wgDBname;
$hash = $user->getPageRenderingHash();
2004-05-27 15:24:04 +00:00
$pageid = intval( $article->getID() );
$key = "$wgDBname:pcache:idhash:$pageid-$hash";
return $key;
}
2004-05-29 11:39:29 +00:00
2004-05-27 15:24:04 +00:00
function get( &$article, &$user ) {
2004-05-29 11:39:29 +00:00
global $wgMemc, $wgCacheEpoch;
$fname = 'ParserCache::get';
wfProfileIn( $fname );
$hash = $user->getPageRenderingHash();
$pageid = intval( $article->getID() );
2004-05-27 15:24:04 +00:00
$key = $this->getKey( $article, $user );
2004-05-30 08:18:40 +00:00
wfDebug( "Trying parser cache $key\n" );
2004-05-27 15:24:04 +00:00
$value = $wgMemc->get( $key );
if ( $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
$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;
if ( !$canCache || $value->getCacheTime() <= $touched || $cacheTime < $wgCacheEpoch ) {
if ( !$canCache ) {
wfDebug( "Invalid cached redirect, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
} else {
wfDebug( "Key expired, touched $touched, epoch $wgCacheEpoch, cached $cacheTime\n" );
}
2004-05-27 15:24:04 +00:00
$wgMemc->delete( $key );
$value = false;
}
} else {
2004-05-27 15:24:04 +00:00
$value = false;
}
wfProfileOut( $fname );
2004-05-27 15:24:04 +00:00
return $value;
}
2004-05-27 15:24:04 +00:00
function save( $parserOutput, &$article, &$user ){
global $wgMemc;
2004-05-27 15:24:04 +00:00
$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-05-27 15:24:04 +00:00
if( $parserOutput->containsOldMagic() ){
$expire = 3600; # 1 hour
} else {
2004-05-30 07:31:26 +00:00
$expire = 86400; # 1 day
}
2004-05-27 15:24:04 +00:00
$wgMemc->set( $key, $parserOutput, $expire );
}
}
?>