码迷,mamicode.com
首页 > 数据库 > 详细

mongoDB index

时间:2014-10-01 13:13:11      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   for   sp   div   

1. create index

db.students.ensureIndex({class:1,student_name:1})

 http://docs.mongodb.org/manual/tutorial/create-an-index/

2. show all indexes in current DB

db.system.indexes.find()

 3. show index for a collection

db.grades.getIndexes()

 4. delete index

db.grades.dropIndex({"student_id":1})

 

mongoDB index

标签:des   style   blog   http   color   io   for   sp   div   

原文地址:http://www.cnblogs.com/phoenix13suns/p/4003135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!