mongodb中createIndex()的作用:在mongodb中createIndex()可以用來創建索引,需要注意的是在3.0.0版本前創建索引方法為“db.collection.ensureIndex()”,之后的版本才使用“db.collection.createIndex() 方法,createIndex()方法的語法格式為:“db.collection.createIndex(keys, options)”。
具體內容如下:
createIndex()方法基本語法格式如下所示
>db.collection.createIndex(keys, options)
語法中 Key 值為你要創建的索引字段,1 為指定按升序創建索引,如果你想按降序來創建索引指定為 -1 即可。
實例
>db.col.createIndex({"title":1})>
createIndex() 方法中你也可以設置使用多個字段創建索引(關系型數據庫中稱作復合索引)。
>db.col.createIndex({"title":1,"description":-1})>
createIndex() 接收可選參數,可選參數列表如下:
實例
在后臺創建索引:
db.values.createIndex({open: 1, close: 1}, {background: true})
通過在創建索引時加 background:true 的選項,讓創建工作在后臺執行。