cursor.forEach(function) 循環 例如cursor.forEach(function (obj) {printjson(obj);})
實現分頁
cursor.skip(n) 跳過n行
cursor.limit(n) 顯示n行
例如:顯示第5頁,一頁10條
var cursor = db.stu.find().skip(5*9).limit(10);
轉化為數組
cursor.toArray()
db.collectionName.reIndex() 重建索引
創建多列索引
db.stu.ensureIndex({age:1,stu_id:-1})
創建子文檔索引
db.stu.ensureIndex({father.age:1})
創建唯一索引
db.stu.ensureIndex({stu_id:1},{unique:true})
創建哈希索引
db.stu.ensureIndex({name:’hashed’})