Mongo索引使用

Mongo索引使用 1.創建索引 db.collection.createIndex(keys, options) 語法中 Key 值爲你要創建的索引字段,1 爲指定按升序創建索引,如果你想按降序來創建索引指定爲 -1 即可 實例: db.col.ensureIndex({‘title’:1}) 多個字段創建索引 (相當於關係型數據的複合索引) db.col.ensureIndex({‘sex’:
相關文章
相關標籤/搜索