溫馨提示×

mongodb中createIndex()有什么用

小晨
223
2021-07-28 11:07:36
欄目: 云計算

mongodb中createIndex()的作用:在mongodb中createIndex()可以用來創(chuàng)建索引,需要注意的是在3.0.0版本前創(chuàng)建索引方法為“db.collection.ensureIndex()”,之后的版本才使用“db.collection.createIndex() 方法,createIndex()方法的語法格式為:“db.collection.createIndex(keys, options)”。

mongodb中createIndex()有什么用

具體內(nèi)容如下:

createIndex()方法基本語法格式如下所示

>db.collection.createIndex(keys, options)

語法中 Key 值為你要創(chuàng)建的索引字段,1 為指定按升序創(chuàng)建索引,如果你想按降序來創(chuàng)建索引指定為 -1 即可。

實例

>db.col.createIndex({"title":1})

>

createIndex() 方法中你也可以設(shè)置使用多個字段創(chuàng)建索引(關(guān)系型數(shù)據(jù)庫中稱作復(fù)合索引)。

>db.col.createIndex({"title":1,"description":-1})

>

createIndex() 接收可選參數(shù),可選參數(shù)列表如下:mongodb中createIndex()有什么用

實例

在后臺創(chuàng)建索引:

db.values.createIndex({open: 1, close: 1}, {background: true})

通過在創(chuàng)建索引時加 background:true 的選項,讓創(chuàng)建工作在后臺執(zhí)行。

0