getIndex()

语法

db.collectionspace.collection.getIndex(<name>)

获取当前集合中指定的索引信息。

参数描述

参数名参数类型描述是否必填
namestring索引名,同一个集合中的索引名必须唯一。

Note:

  • 索引名必须在集合中存在。
  • 索引名不能是空串,含点(.)或者美元符号($),且长度不超过127B。

返回值

返回指定索引的引用,类型为object。

错误

错误码

示例

  • 返回集合 bar 下名为 ageIndex 索引的引用,假设 ageIndex 已存在。
  1. > db.foo.bar.getIndex( "ageIndex" )