MongoDB\Collection::dropIndexes()
定义
参数
$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
数据库的restaurants
collection中删除所有索引:
$collection = (new MongoDB\Client)->test->restaurants; $result = $collection->dropIndexes(); var_dump($result);
而输出将类似如下所示:
object(MongoDB\Model\BSONDocument)#9 (1) { ["storage":"ArrayObject":private]=> array(3) { ["nIndexesWas"]=> int(3) ["msg"]=> string(38) "non-_id indexes dropped for collection" ["ok"]=> float(1) } }
另请参阅
MongoDB手册中的dropIndexes命令参考
MongoDB 手册中的索引文档