- MongoDB官方文档中文版
- MongoDB中文手册说明
- MongoDB简介
- 安装 MongoDB
- The mongo Shell
- MongoDB CRUD 操作
- 聚合
- 数据模型
- 事务
- 索引
- 安全
- 安全检查列表
- 启用访问控制
- 身份验证
- 基于角色的访问控制
- TLS / SSL(传输加密)
- 静态加密
- 客户端字段级加密
- 审计
- 网络和配置强化
- 实现字段级别修订
- 安全参考
- 附录
- 变更流
- 复制
- 分片
- 分片键
- 哈希分片
- 范围分片
- 区
- 管理分片区
- 按位置细分数据
- 用于更改SLA或SLO的分层硬件
- 按应用或客户细分数据
- 仅插入工作负载的分布式本地写入
- 管理分片区
- 使用块进行数据分区
- 在分片集群中拆分数据块
- 管理
- 存储
- 存储引擎
- 日志记录
- 管理日志记录
- GridFS
- FAQ:MongoDB 存储
- 存储引擎
- 参考
- 运算符
- 查询与映射运算符
- 更新运算符
- 聚合管道阶段
- 聚合管道操作符
- $abs (aggregation)
- $acos (aggregation)
- $acosh (aggregation)
- $add (aggregation)
- $addToSet (aggregation)
- $allElementsTrue (aggregation)
- $and (aggregation)
- $anyElementTrue (aggregation)
- $arrayElemAt (aggregation)
- $arrayToObject (aggregation)
- $asin (aggregation)
- $asinh (aggregation)
- $atan (aggregation)
- $atan2 (aggregation)
- $atanh (aggregation)
- $avg (aggregation)
- $ceil (aggregation)
- $cmp (aggregation)
- $concat (aggregation)
- $concatArrays (aggregation)
- $cond (aggregation)
- $convert (aggregation)
- $cos (aggregation)
- $dateFromParts (aggregation)
- $dateToParts (aggregation)
- $dateFromString (aggregation)
- $literal (aggregation)
- 查询修饰符
- 数据库命令
- 聚合命令
- 地理空间命令
- 查询和写操作命令
- 查询计划缓存命令
- 认证命令
- 用户管理命令
- 角色管理命令
- 复制命令
- 分片命令
- 会话命令
- 管理命令
- 诊断命令
- 免费监控命令
- 系统事件审计命令
- mongo Shell 方法
- 集合方法
- db.collection.aggregate()
- db.collection.bulkWrite()
- db.collection.copyTo()
- db.collection.count()
- db.collection.countDocuments()
- db.collection.estimatedDocumentCount()
- db.collection.createIndex()
- db.collection.createIndexes()
- db.collection.dataSize()
- db.collection.deleteOne()
- db.collection.deleteMany()
- db.collection.distinct()
- db.collection.drop()
- db.collection.dropIndex()
- db.collection.dropIndexes()
- db.collection.ensureIndex()
- db.collection.explain()
- db.collection.find()
- db.collection.findAndModify()
- db.collection.findOne()
- db.collection.findOneAndDelete()
- db.collection.findOneAndReplace()
- db.collection.findOneAndUpdate()
- db.collection.getIndexes()
- db.collection.getShardDistribution()
- db.collection.getShardVersion()
- db.collection.insert()
- db.collection.insertOne()
- db.collection.insertMany()
- db.collection.isCapped()
- db.collection.latencyStats()
- db.collection.mapReduce()
- db.collection.reIndex()
- db.collection.remove()
- db.collection.renameCollection()
- db.collection.replaceOne()
- db.collection.save()
- db.collection.stats()
- db.collection.storageSize()
- db.collection.totalIndexSize()
- db.collection.totalSize()
- db.collection.update()
- db.collection.updateOne()
- db.collection.updateMany()
- db.collection.watch()
- db.collection.validate()
- 词汇表
- 默认的MongoDB端口
- 默认的MongoDB读/写关注
- 服务器会话
- MongoDB驱动
- FAQ
- 联系我们
- 更多资料
- [快学Mongo]
- [Mongo问题讨论区]
- [Mongo 驱动使用手册]
- 本书使用 GitBook 发布
复合索引
复合索引
在本页面
MongoDB支持复合索引,其中单个索引结构持有对集合文档中多个字段 [1]的引用。下图展示了两个字段上的复合索引示例:
[1] mongodb对任何复合索引施加32个字段的限制。
复合索引可以支持在多个字段上匹配的查询。
创建复合索引
要创建一个复合索引,使用类似如下原型的操作:
db.collection.createIndex( { <field1>: <type>, <field2>: <type2>, ... } )
索引规范中的字段值描述该字段的索引类型。例如,值1指定按升序对项排序的索引。值-1指定按降序对项排序的索引。有关其他索引类型,请参见索引类型。
[warning] 重要
不能创建具有hashed索引类型的复合索引。如果试图创建包含hashed索引字段的复合索引,将收到一个错误。
考虑一个名为products的集合,它包含类似于以下文档的文档:
{
"_id": ObjectId(...),
"item": "Banana",
"category": ["food", "produce", "grocery"],
"location": "4th Street Store",
"stock": 4,
"type": "cases"
}
以下操作在item
和 stock
字段上创建一个升序索引:
db.products.createIndex( { "item": 1, "stock": 1 } )
复合索引中列出的字段的顺序很重要。索引将包含对文档的引用,这些文档首先按item
字段的值排序,然后在该字段的每个值内item
,按stock
字段的值排序。有关更多信息,请参见排序顺序。
除了支持在所有索引字段上都匹配的查询之外,复合索引还可以支持在索引字段的前缀上匹配的查询。也就是说,索引支持对item
字段以及item
和stock
字段的查询:
db.products.find( { item: "Banana" } )
db.products.find( { item: "Banana", stock: { $gt: 5 } } )
有关详细信息,请参见前缀。
排序顺序
索引以升序(1
)或降序(-1
)排序顺序存储对字段的引用。对于单字段索引,键的排序顺序无关紧要,因为MongoDB可以在任一方向上遍历索引。但是,对于复合索引,属性的顺序决定了索引是否支持结果集的排序。
假设一个包含字段username
和date
的文档的集合事件。应用程序可以发出查询,返回的结果首先按升序username
值排序,然后按降序(即从最近到最后)date
排序,例如:
db.events.find().sort( { username: 1, date: -1 } )
或先按username
降序再按date
升序返回结果的查询,例如:
db.events.find().sort( { username: -1, date: 1 } )
以下索引可以支持这两种排序操作:
db.events.createIndex( { "username" : 1, "date" : -1 } )
但是,上面的索引不支持先升序username
值再升序 date
值排序,例如:
db.events.find().sort( { username: 1, date: 1 } )
有关排序顺序和复合索引的更多信息,请参见 使用索引对查询结果进行排序。
前缀
索引前缀是索引字段的开始子集。例如,假设以下复合索引:
{ "item": 1, "location": 1, "stock": 1 }
索引具有以下索引前缀:
{ item: 1 }
{ item: 1, location: 1 }
对于复合索引,MongoDB可以使用索引来支持对索引前缀的查询。这样,MongoDB可以将索引用于以下字段的查询:
- the
item
字段, - the
item
字段 and thelocation
字段, - the
item
字段 and thelocation
字段 和 thestock
字段.
MongoDB还可以使用索引来支持对item
和 stock
字段的查询,因为item
字段对应于一个前缀。但是,在支持查询方面,索引的效率不如只支持item
和stock
的索引。
然而,MongoDB不能使用索引来支持查询,包括以下字段,因为没有item
字段,列出的字段都不对应前缀索引:
- the
location
字段, - the
stock
字段, - the
location
stock
字段.
如果你有一个集合,复合索引和索引的前缀(例如:{a:1,b: 1}和{a:1}),如果两个索引都没有稀疏约束或唯一约束,那么您可以删除前缀上的索引(例如{a: 1})。MongoDB将在所有使用前缀索引的情况下使用复合索引。
索引交集
从2.6版本开始,MongoDB可以使用索引交集来完成查询。是创建支持查询的复合索引,还是依赖索引交集,这取决于系统的具体情况。有关更多细节,请参见 索引交集和复合索引。
其他注意事项
在索引构建期间,应用程序可能会遇到性能下降,包括对集合的读/写访问受限。有关索引构建过程的更多信息,,请参见 “填充集合上的索引构建”,包括“ 复制环境中的索引构建”部分。
一些驱动程序可能使用NumberLong(1)
而不是 1
将规范指定为索引。这对结果索引没有任何影响。
译者:莫薇
Copyright © 上海锦木信息技术有限公司 all right reserved,由 MongoDB汉化小组 提供技术支持文件修订时间: 2020-10-11 20:53:05