2004-02-26 13:37:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
class ParserCache
|
|
|
|
|
{
|
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-05-29 11:39:29 +00:00
|
|
|
global $wgMemc, $wgCacheEpoch;
|
2004-05-28 05:45:13 +00:00
|
|
|
$fname = "ParserCache::get";
|
|
|
|
|
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 );
|
|
|
|
|
$value = $wgMemc->get( $key );
|
|
|
|
|
if ( $value ) {
|
|
|
|
|
# Delete if article has changed since the cache was made
|
2004-05-29 11:39:29 +00:00
|
|
|
$touched = $article->getTouched();
|
2004-05-30 07:31:26 +00:00
|
|
|
if ( $value->getCacheTime() <= $touched || $value->getCacheTime < $wgCacheEpoch ) {
|
2004-05-27 15:24:04 +00:00
|
|
|
$wgMemc->delete( $key );
|
|
|
|
|
$value = false;
|
|
|
|
|
}
|
2004-02-26 13:37:26 +00:00
|
|
|
} else {
|
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 ){
|
|
|
|
|
global $wgMemc;
|
|
|
|
|
$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-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-05-27 15:24:04 +00:00
|
|
|
|
|
|
|
|
$wgMemc->set( $key, $parserOutput, $expire );
|
2004-02-26 13:37:26 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|