BulkWrite::delete() hint option

https://jira.mongodb.org/browse/PHPC-1561


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@350257 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jeremy Mikola 2020-07-31 03:36:32 +00:00
parent f87712410c
commit 79b61596dd

View file

@ -42,6 +42,22 @@
</thead>
<tbody>
&mongodb.option.collation;
<row>
<entry>hint</entry>
<entry><type>string|array|object</type></entry>
<entry>
<para>
Index specification. Specify either the index name as a string or
the index key pattern. If specified, then the query system will only
consider plans using the hinted index.
</para>
<para>
This option is available in MongoDB 4.4+ and will result in an
exception at execution time if specified for an older server
version.
</para>
</entry>
</row>
<row>
<entry>limit</entry>
<entry><type>boolean</type></entry>
@ -83,6 +99,12 @@
</row>
</thead>
<tbody>
<row>
<entry>1.8.0</entry>
<entry>
Added the <literal>"hint"</literal> option.
</entry>
</row>
<row>
<entry>1.2.0</entry>
<entry>