mediawiki-extensions-Echo/includes/cache/RevisionLocalCache.php
Kunal Mehta 9fd265d54b The job queue does not run against multiple wikis at once
...because that would be crazy.

Also fix return documentation.

Change-Id: I38c06767f4e53bafff19b4f0819158939ef264c0
2015-06-01 19:26:06 -07:00

57 lines
1.1 KiB
PHP

<?php
/**
* Cache class that maps revision id to Revision object
*/
class EchoRevisionLocalCache extends EchoLocalCache {
/**
* @var EchoRevisionLocalCache
*/
private static $instance;
/**
* Create a EchoRevisionLocalCache object
* @return EchoRevisionLocalCache
*/
public static function create() {
if ( !self::$instance ) {
self::$instance = new EchoRevisionLocalCache();
}
return self::$instance;
}
/**
* {@inheritDoc}
*/
protected function resolve() {
if ( $this->lookups ) {
// @Todo Add newFromIds() to Revision
$dbr = wfGetDB( DB_SLAVE );
$fields = array_merge(
Revision::selectFields(),
Revision::selectPageFields(),
Revision::selectUserFields()
);
$res = $dbr->select(
array( 'revision', 'page', 'user' ),
$fields,
array( 'rev_id' => $this->lookups ),
__METHOD__,
array(),
array(
'page' => Revision::pageJoinCond(),
'user' => Revision::userJoinCond()
)
);
if ( $res ) {
foreach ( $res as $row ) {
$this->targets->set( $row->rev_id, new Revision( $row ) );
}
$this->lookups = array();
}
}
}
}