MongoCollection::parallelCollectionScan

(PECL mongo >=1.5.0)

MongoCollection::parallelCollectionScanReturns an array of cursors to iterator over a full collection in parallel

说明

public MongoCollection::parallelCollectionScan ( int $num_cursors ) : array[MongoCommandCursor]

This method returns an array of a maximum of num_cursors cursors. An iteration over one of the returned cursors results in a partial set of documents for a collection. Iteration over all the returned cursors results in getting every document back from the collection.

This method is a wrapper for the parallelCollectionScan MongoDB command.

参数

num_cursors

The number of cursors to request from the server. Please note, that the server can return less cursors than you requested.

返回值

Returns an array of MongoCommandCursor objects.

范例

Example #1 MongoCollection::parallelCollectionScan() example

Returning all documents in a collection by using multiple cursors.

<?php
$m 
= new MongoClient;
$c $m->demo->cities;

/* Request three cursors */
$cursors $c->parallelCollectionScan);

/* Add all the cursors to the MultipleIterator */
$mi = new MultipleIteratorMultipleIterator::MIT_NEED_ANY );
foreach ( 
$cursors as $cursor )
{
    
$mi->attachIterator$cursor );
}

/* Iterate over all the associated cursors */
foreach ( $mi as $items )
{
    foreach ( 
$items as $item )
    {
        if ( 
$item !== NULL )
        {
            echo 
$item['name'], "\n";
        }
    }
}
?>

参见

相关文章
php deque returns the number of values in the collectionphp apd 函数 returns the current call stack as an arrayphp imap 函数 this function returns an array of messages matching the given search criteriaphp mailparse 函数 returns an associative array of info about the messagephp sqlite 函数 executes a query and returns either an array for one single column or the value of the first rowphp ktaglib id3v2 tag returns an array of id3v2 frames associated with the id3v2 tagphp intlcodepointbreakiterator get last code point passed over after advancing or receding the iteratorphp mongocollection string representation of this collectionphp mongocollection queries this collection returning a single elementphp mongocollection gets a collectionphp mongocollection returns information about indexes on this collectionphp mongocollection returns an array of cursors to iterator over a full collection in parallelphp mongodb driver cursor returns an array containing all results for this cursorphp phar returns the full path on disk or full phar url to the currently executing phar archivephp recursivearrayiterator returns an iterator for the current entry if it is an array or an objectphp recursivearrayiterator returns whether current entry is an array or an objectphp solrinputdocument returns an array of child documents solrinputdocument php solrquery returns an array of filter queriesphp solrresponse returns the full url the request was sent tophp splobjectstorage returns if the current iterator entry is valid
关注编程学问公众号