MongoDB添加索引

休言女子非英物,夜夜龙泉壁上鸣。这篇文章主要讲述MongoDB添加索引相关的知识,希望能为你提供帮助。
?例如库名:test?
?1:查询库集合?
show collections;
假如集合名为:?my_collections?
?2:查看索引语句:?
db.getCollection("?my_collections?").getIndexes();
?3:添加索引:?
try db.getCollection("?my_collections?").ensureIndex("?address?":?1,background:1, unique:false )catch(e)print(e);
注:---------------------------------------
?my_collections:集合的名称?
?address:字段名(要添加索引的字段)
1:正序列
【MongoDB添加索引】-1:倒序列
?
?

    推荐阅读