Limit the Title backlink cache to two instances.
Change-Id: I1e17a3de20d7c84a9818a850d4b7cc2898f72dc2
This commit is contained in:
parent
2a7478b4fb
commit
af89b09a06
2 changed files with 26 additions and 10 deletions
|
|
@ -41,6 +41,8 @@
|
||||||
* @internal documentation reviewed on 18 Mar 2011 by hashar
|
* @internal documentation reviewed on 18 Mar 2011 by hashar
|
||||||
*/
|
*/
|
||||||
class BacklinkCache {
|
class BacklinkCache {
|
||||||
|
/** @var ProcessCacheLRU */
|
||||||
|
protected static $cache;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Multi dimensions array representing batches. Keys are:
|
* Multi dimensions array representing batches. Keys are:
|
||||||
|
|
@ -81,12 +83,30 @@ class BacklinkCache {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new BacklinkCache
|
* Create a new BacklinkCache
|
||||||
* @param Title $title : Title object to create a backlink cache for.
|
*
|
||||||
|
* @param Title $title : Title object to create a backlink cache for
|
||||||
*/
|
*/
|
||||||
function __construct( $title ) {
|
public function __construct( Title $title ) {
|
||||||
$this->title = $title;
|
$this->title = $title;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new BacklinkCache or reuse any existing one
|
||||||
|
*
|
||||||
|
* @param Title $title : Title object to get a backlink cache for
|
||||||
|
* @return BacklinkCache
|
||||||
|
*/
|
||||||
|
public static function get( Title $title ) {
|
||||||
|
if ( !self::$cache ) { // init cache
|
||||||
|
self::$cache = new ProcessCacheLRU( 2 );
|
||||||
|
}
|
||||||
|
$dbKey = $title->getPrefixedDBkey();
|
||||||
|
if ( !self::$cache->has( $dbKey, 'obj' ) ) {
|
||||||
|
self::$cache->set( $dbKey, 'obj', new self( $title ) );
|
||||||
|
}
|
||||||
|
return self::$cache->get( $dbKey, 'obj' );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serialization handler, diasallows to serialize the database to prevent
|
* Serialization handler, diasallows to serialize the database to prevent
|
||||||
* failures after this class is deserialized from cache with dead DB
|
* failures after this class is deserialized from cache with dead DB
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,6 @@ class Title {
|
||||||
var $mLength = -1; // /< The page length, 0 for special pages
|
var $mLength = -1; // /< The page length, 0 for special pages
|
||||||
var $mRedirect = null; // /< Is the article at this title a redirect?
|
var $mRedirect = null; // /< Is the article at this title a redirect?
|
||||||
var $mNotificationTimestamp = array(); // /< Associative array of user ID -> timestamp/false
|
var $mNotificationTimestamp = array(); // /< Associative array of user ID -> timestamp/false
|
||||||
var $mBacklinkCache = null; // /< Cache of links to this title
|
|
||||||
var $mHasSubpage; // /< Whether a page has any subpages
|
var $mHasSubpage; // /< Whether a page has any subpages
|
||||||
// @}
|
// @}
|
||||||
|
|
||||||
|
|
@ -4477,11 +4476,8 @@ class Title {
|
||||||
*
|
*
|
||||||
* @return BacklinkCache
|
* @return BacklinkCache
|
||||||
*/
|
*/
|
||||||
function getBacklinkCache() {
|
public function getBacklinkCache() {
|
||||||
if ( is_null( $this->mBacklinkCache ) ) {
|
return BacklinkCache::get( $this );
|
||||||
$this->mBacklinkCache = new BacklinkCache( $this );
|
|
||||||
}
|
|
||||||
return $this->mBacklinkCache;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue