MongoDB 创建索引的语法

栏目: 数据库 · 发布时间: 5年前

1.为普通字段添加索引,并且为索引命名

db. 集合名 .createIndex( {" 字段名 ": 1 },{" name ":'idx_ 字段名 '})

说明: (1)索引命名规范:idx_<构成索引的字段名>。如果字段名字过长,可采用字段缩写。

(2)字段值后面的 1 代表升序;如是 -1 代表 降序。

2.为内嵌字段添加索引

db. 集合名 .createIndex({" 字段名 . 内嵌字段名 ":1},{"name":'idx_ 字段名 _ 内嵌字段名 '})

3.通过后台创建索引

db. 集合名 .createIndex({" 字段名 ":1},{"name":'idx_ 字段名 ', background:true })

4:组合索引

db. 集合名 .createIndex({" 字段名1 ":-1," 字段名2 ":1},{"name":'idx_ 字段名1 _ 字段名2 ',background:true})

5.设置TTL 索引

db. 集合名 .createIndex( { " 字段名 ": 1 },{ "name":'idx_ 字段名 ', expireAfterSeconds : 定义的时间,background:true} )

说明 :expireAfterSeconds为过期时间(单位秒)


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

MongoDB

MongoDB

Kristina Chodorow、Michael Dirolf / O'Reilly Media / 2010-9-24 / USD 39.99

Discover how MongoDB can help you manage a huMONGOus amount of data collected through your web application. This book covers the basic principles and advanced uses of this document-oriented database, ......一起来看看 《MongoDB》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

在线进制转换器
在线进制转换器

各进制数互转换器

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器