mMemc =& $memCached; } function getKey( &$article, &$user ) { global $wgDBname, $action; $hash = $user->getPageRenderingHash(); $pageid = intval( $article->getID() ); $renderkey = (int)($action == 'render'); $key = "$wgDBname:pcache:idhash:$pageid-$renderkey!$hash"; return $key; } function getETag( &$article, &$user ) { return 'W/"' . $this->getKey($article, $user) . "--" . $article->mTouched. '"'; } function get( &$article, &$user ) { global $wgCacheEpoch; $fname = 'ParserCache::get'; wfProfileIn( $fname ); $hash = $user->getPageRenderingHash(); $pageid = intval( $article->getID() ); $key = $this->getKey( $article, $user ); 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 $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 { wfIncrStats( "pcache_hit" ); } } else { wfDebug( "Parser cache miss.\n" ); wfIncrStats( "pcache_miss_absent" ); $value = false; } wfProfileOut( $fname ); return $value; } function save( $parserOutput, &$article, &$user ){ $key = $this->getKey( $article, $user ); $now = wfTimestampNow(); $parserOutput->setCacheTime( $now ); $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 = 86400; # 1 day } $this->mMemc->set( $key, $parserOutput, $expire ); } } ?>