定义
参数
$indexName: 细绳|MongoDB\Model\IndexInfo- 要删除的索引的名称或模型对象。 使用
MongoDB\Collection::listIndexes()方法查看集合上的现有索引。 $options: array指定所需选项的数组。
Return Values
包含dropIndexes命令的结果文档的大量或对象。 返回类型将取决于typeMap选项。
错误/异常
MongoDB\Exception\UnsupportedException,如果所选服务器使用了选项但不支持选项(例如collation、readConcern、writeConcern)。
MongoDB\Exception\InvalidArgumentException 用于与参数或选项解析相关的错误。
MongoDB\ 驱动程序\Exception\RuntimeException 用于扩展级别的其他错误(例如连接错误)。
例子
以下操作从数据库test的collectionrestaurants中删除名为borough_1的索引:
$collection = (new MongoDB\Client)->test->restaurants; $result = $collection->dropIndex('borough_1'); var_dump($result);
而输出将类似如下所示:
object(MongoDB\Model\BSONDocument)#9 (1) { ["storage":"ArrayObject":private]=> array(2) { ["nIndexesWas"]=> int(2) ["ok"]=> float(1) } }
另请参阅
MongoDB手册中的dropIndexes命令参考
MongoDB 手册中的索引文档