Skip to content

mongo index

WinChua edited this page Jul 16, 2020 · 1 revision

1. 索引概述:

索引能够加速mongo查询文档的过程, 在没有索引的情况下, mongo需要扫描所有的文档,来匹配对应的查询条件,减少某次查询中需要查找的文档数据量;

2. 索引类型:

  • 默认的_id索引:
  • 单field索引:
  • 复合索引:
  • hash索引:

Clone this wiki locally