wiki.techinc.nl/includes/ParserCache.php

53 lines
1.1 KiB
PHP
Raw Normal View History

<?php
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-27 15:24:04 +00:00
function get( &$article, &$user ) {
global $wgMemc;
$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 );
$value = $wgMemc->get( $key );
if ( $value ) {
# Delete if article has changed since the cache was made
if ( $value->getTouched() != $article->getTouched() ) {
$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;
$key = $this->getKey( $article, $user );
$parserOutput->setTouched( $article->getTouched() );
if( $parserOutput->containsOldMagic() ){
$expire = 3600; # 1 hour
} else {
2004-05-27 15:24:04 +00:00
$expire = 7*86400; # 7 days
}
2004-05-27 15:24:04 +00:00
$wgMemc->set( $key, $parserOutput, $expire );
}
2004-05-27 15:24:04 +00:00
}
?>