|
MediaWiki master
|
Allows iterating a large number of rows in batches transparently. More...
Inherits RecursiveIterator.

Public Member Functions | |
| __construct (IReadableDatabase $db, $sqb, $primaryKey, $batchSize) | |
| addConditions (array $conditions) | |
| addJoinConditions (array $conditions) | |
| addOptions (array $options) | |
| current () | |
| extractPrimaryKeys ( $row) | |
| Extracts the primary key(s) from a database row. | |
| getChildren () | |
| hasChildren () | |
| key () | |
| next () | |
| Fetch the next set of rows from the database. | |
| rewind () | |
| Reset the iterator to the beginning of the table. | |
| setCaller ( $caller) | |
| Use ->setCaller( METHOD ) to indicate which code is using this class. | |
| setFetchColumns (array $columns) | |
| valid () | |
Public Attributes | |
| SelectQueryBuilder | $sqb |
| Underlying database query builder, may be mutated before iteration begins. | |
Protected Member Functions | |
| buildConditions () | |
| Uses the primary key list and the maximal result row from the previous iteration to build an SQL condition sufficient for selecting the next page of results. | |
Protected Attributes | |
| int | $batchSize |
| The number of rows to fetch per iteration. | |
| IReadableDatabase | $db |
| array | $primaryKey |
| The name of the primary key(s) | |
Allows iterating a large number of rows in batches transparently.
By default when iterated over returns the full query result as an array of rows. Can be wrapped in RecursiveIteratorIterator to collapse those arrays into a single stream of rows queried in batches.
Definition at line 26 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::__construct | ( | IReadableDatabase | $db, |
| $sqb, | |||
| $primaryKey, | |||
| $batchSize ) |
| IReadableDatabase | $db | |
| SelectQueryBuilder | string | array | $sqb | The query to split into batches (or table name/names) |
| string | array | $primaryKey | The name or names of the primary key columns |
| int | $batchSize | The number of rows to fetch per iteration |
Definition at line 63 of file BatchRowIterator.php.
References MediaWiki\Utils\BatchRowIterator\$batchSize, MediaWiki\Utils\BatchRowIterator\$db, MediaWiki\Utils\BatchRowIterator\$primaryKey, MediaWiki\Utils\BatchRowIterator\$sqb, and Wikimedia\Rdbms\IReadableDatabase\newSelectQueryBuilder().
| MediaWiki\Utils\BatchRowIterator::addConditions | ( | array | $conditions | ) |
| array | $conditions | Query conditions suitable for use with IDatabase::select |
Definition at line 86 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::addJoinConditions | ( | array | $conditions | ) |
| array | $conditions | Query join conditions suitable for use with IDatabase::select |
Definition at line 104 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::addOptions | ( | array | $options | ) |
| array | $options | Query options suitable for use with IDatabase::select |
Definition at line 95 of file BatchRowIterator.php.
|
protected |
Uses the primary key list and the maximal result row from the previous iteration to build an SQL condition sufficient for selecting the next page of results.
Definition at line 222 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::current | ( | ) |
Definition at line 159 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::extractPrimaryKeys | ( | $row | ) |
Extracts the primary key(s) from a database row.
| \\stdClass | $row | An individual database row from this iterator |
Definition at line 147 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::getChildren | ( | ) |
Definition at line 193 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::hasChildren | ( | ) |
Definition at line 189 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::key | ( | ) |
Definition at line 166 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::next | ( | ) |
Fetch the next set of rows from the database.
Definition at line 200 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::rewind | ( | ) |
Reset the iterator to the beginning of the table.
Definition at line 173 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::setCaller | ( | $caller | ) |
Use ->setCaller( METHOD ) to indicate which code is using this class.
Only used in debugging output.
| string | $caller |
Definition at line 135 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::setFetchColumns | ( | array | $columns | ) |
| array | $columns | List of column names to select from the table suitable for use with IDatabase::select() |
Definition at line 113 of file BatchRowIterator.php.
| MediaWiki\Utils\BatchRowIterator::valid | ( | ) |
Definition at line 182 of file BatchRowIterator.php.
|
protected |
The number of rows to fetch per iteration.
Definition at line 38 of file BatchRowIterator.php.
Referenced by MediaWiki\Utils\BatchRowIterator\__construct().
|
protected |
Definition at line 28 of file BatchRowIterator.php.
Referenced by MediaWiki\Utils\BatchRowIterator\__construct().
|
protected |
The name of the primary key(s)
Definition at line 33 of file BatchRowIterator.php.
Referenced by MediaWiki\Utils\BatchRowIterator\__construct().
| SelectQueryBuilder MediaWiki\Utils\BatchRowIterator::$sqb |
Underlying database query builder, may be mutated before iteration begins.
Definition at line 53 of file BatchRowIterator.php.
Referenced by MediaWiki\Utils\BatchRowIterator\__construct().