mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
PHP-1043: Document parallelCollectionScan
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@333361 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
87a07ba920
commit
8e5a91bf87
2 changed files with 123 additions and 0 deletions
122
reference/mongo/mongocollection/parallelcollectionscan.xml
Normal file
122
reference/mongo/mongocollection/parallelcollectionscan.xml
Normal file
|
@ -0,0 +1,122 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<!-- $Revision: 332247 $ -->
|
||||
<refentry xml:id="mongocollection.parallelcollectionscan" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<refnamediv>
|
||||
<refname>MongoCollection::parallelCollectionScan</refname>
|
||||
<refpurpose>Returns an array of cursors to iterator over a full collection in parallel</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1 role="description">
|
||||
&reftitle.description;
|
||||
<methodsynopsis>
|
||||
<modifier>public</modifier> <type>array[MongoCommandCursor]</type><methodname>MongoCollection::parallelCollectionScan</methodname>
|
||||
<methodparam><type>int</type><parameter>num_cursors</parameter></methodparam>
|
||||
</methodsynopsis>
|
||||
<para>
|
||||
This method returns an array of a maximum of <literal>num_cursors</literal>
|
||||
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.
|
||||
</para>
|
||||
<para>
|
||||
This method is a wrapper for the <literal>parallelCollectionScan</literal>
|
||||
MongoDB command.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="parameters">
|
||||
&reftitle.parameters;
|
||||
<para>
|
||||
<variablelist>
|
||||
<varlistentry>
|
||||
<term>
|
||||
<parameter>num_cursors</parameter>
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
The number of cursors to request from the server. Please note, that the
|
||||
server can return less cursors than you requested.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="returnvalues">
|
||||
&reftitle.returnvalues;
|
||||
<para>
|
||||
Returns an array of <classname>MongoCommandCursor</classname> objects.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="examples">
|
||||
&reftitle.examples;
|
||||
<example>
|
||||
<title><function>MongoCollection::parallelCollectionScan</function> example</title>
|
||||
<para>
|
||||
Returning all documents in a collection by using multiple cursors.
|
||||
</para>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
$m = new MongoClient;
|
||||
$c = $m->demo->cities;
|
||||
|
||||
/* Request three cursors */
|
||||
$cursors = $c->parallelCollectionScan( 3 );
|
||||
|
||||
/* Add all the cursors to the MultipleIterator */
|
||||
$mi = new MultipleIterator( MultipleIterator::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";
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</refsect1>
|
||||
|
||||
<refsect1 role="seealso">
|
||||
&reftitle.seealso;
|
||||
<para>
|
||||
<simplelist>
|
||||
<member><classname>MultipleIterator</classname></member>
|
||||
<member><classname>MongoCommandCursor</classname></member>
|
||||
<member><methodname>MongoDb::command</methodname></member>
|
||||
</simplelist>
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
sgml-omittag:t
|
||||
sgml-shorttag:t
|
||||
sgml-minimize-attributes:nil
|
||||
sgml-always-quote-attributes:t
|
||||
sgml-indent-step:1
|
||||
sgml-indent-data:t
|
||||
sgml-parent-document:nil
|
||||
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
||||
sgml-exposed-tags:nil
|
||||
sgml-local-catalogs:nil
|
||||
sgml-local-ecat-files:nil
|
||||
End:
|
||||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||||
vim: et tw=78 syn=sgml
|
||||
vi: ts=1 sw=1
|
||||
-->
|
|
@ -97,6 +97,7 @@
|
|||
<function name='mongocollection::getwriteconcern' from='PECL mongo >=1.5.0'/>
|
||||
<function name='mongocollection::group' from='PECL mongo >=0.9.2'/>
|
||||
<function name='mongocollection::insert' from='PECL mongo >=0.9.0'/>
|
||||
<function name='mongocollection::parallelcollectionscan' from='PECL mongo >=1.5.0'/>
|
||||
<function name='mongocollection::remove' from='PECL mongo >=0.9.0'/>
|
||||
<function name='mongocollection::save' from='PECL mongo >=0.9.0'/>
|
||||
<function name='mongocollection::setreadpreference' from='PECL mongo >=1.3.0'/>
|
||||
|
|
Loading…
Reference in a new issue