(无版本信息可用,可能仅在Git中)
CollectionRemove::limit — 限制要删除的文档数量
设置要删除的文档的最大数量。
此函数目前未记录;只有其参数列表可用。
rows
要删除的文档的最大数量。
返回一个CollectionRemove对象,可用于执行命令或添加其他操作。
示例 #1 mysql_xdevapi\CollectionRemove::limit() 示例
<?php
$res = $coll->remove('job in (\'Barista\', \'Programmatore\', \'Ballerino\', \'Programmatrice\')')->limit(5)->sort(['age desc', 'name asc'])->execute();
?>